设置 border 边框单侧样式,通过 api 中查看 border(value: BorderOptions): T;
BorderOptions 又包含了若干个子属性
1.width?: EdgeWidths | Length;
2.color?: EdgeColors | ResourceColor;
3.radius?: BorderRadiuses | Length;
4.style?: EdgeStyles | BorderStyle;
其中 EdgeStyles 可以分别针对上下左右进行设置
以底部边框样式为例,具体实现如下
// 以底部边框为例,实现如下
.border({width:{bottom: '2'}})
以上便是此次分享的全部内容,希望能对大家有所帮助!