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