border-width

介绍

用于设置四个边框的宽度,该属性可按顺序设置上边框宽度、右边框宽度、下边框宽度、左边框宽度。

取值

  • thin 细边框。

  • medium 中等边框。

  • thick 粗边框。

  • <length> 以具体的尺寸定义边框宽度

标准化语法

[thin | medium | thick | <length>]{1, 4}
1

样例:

border-width: thin;
border-width: thin medium;
border-width: thin medium thick;
border-width: thin medium thick 10px;
border-width: 5px 10px 15px 20px;
1
2
3
4
5

与 Web 的区别

不支持 inherit、initial、revert、unset 等

默认值为 0, 区别于 web 的默认值 'medium'

Last Updated: 2022/7/15 下午7:22:06