CSS 2.1 参考手册/border-top
来自Blueidea
定义
border-top属性是为上边框设置border-top-width,border-top-style和border-top-color值的缩写。上边框是下面的图释中用亮黄填充的部分。
案例
h1 {border-top: thick solid red}
上面的等价于
h1 { border-top-width: thick; border-top-style: solid; border-top-color: red; }
特性
可能的值
- border-top-width, border-top-style 和 border-top-color的值
- inherit:使用与父元素相同的属性值。
默认值
详见border-top-width, border-top-style 和 border-top-color的默认值。
适用于
继承
不