BorderWidth
[ Interface ]
export interface BorderWidth {
left: number;
leftUnit?: 'px';
top: number;
topUnit?: 'px';
right: number;
rightUnit?: 'px';
bottom: number;
bottomUnit?: 'px';
}
Properties
Name | Type | Description |
---|---|---|
left | Numerical value that is applicable on the left side. | |
leftUnit | 'px' | Only pixels are possible as unit. |
top | Numerical value that is applicable on the top side. | |
topUnit | 'px' | Only pixels are possible as unit. |
right | Numerical value that is applicable on the right side. | |
rightUnit | 'px' | Only pixels are possible as unit. |
bottom | Numerical value that is applicable on the bottom side. | |
bottomUnit | 'px' | Only pixels are possible as unit. |
Available from 1.8 |