border-top-width版本:CSS1 兼容性:IE4+ NS4+ 继承性:无
语法:
border-top-width : medium | thin | thick | length
取值:
medium | : | 默认值。默认宽度 |
thin | : | 小于默认宽度 |
thick | : | 大于默认宽度 |
length | : | 由浮点数字和单位标识符组成的长度值。不可为负值。请参阅 长度单位 |
说明:
设置对象上边框的宽度。
此属性对于
currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
在 IE5.5+ 中,边框属性可以直接应用于内联要素。而在此前的版本中,内联要素要使用该属性,必须先设定对象的
height 或
width 属性,或者设定
position 属性为
absolute ,或者设定
display 属性为
block 。
对应的脚本特性为
borderTopWidth 。
示例:
span { border-top-width: thin; border-top-style: solid; }
span { border-bottom-width: thin; border-bottom-style: solid; }
span { border-left-width: thin; border-left-style: solid; }
span { border-right-width: thin; border-right-style: solid; }