border-bottom
border-bottom 该属性是用来将下边框的所有属性:border-bottom-color, border-bottom-style 与 border-bottom-width 设置到一个声明中。
语法
border-bottom: 20px; border-bottom: 4px dashed; border-bottom: top dashed red;
值
值 | 描述 |
---|---|
<br-width> | 此关键词表示边框的宽度。详见 border-bottom-width |
<br-style> | 此关键词表示边框的样式。详见 border-bottom-stype |
<color> | 此关键词表示边框的颜色。详见 border-bottom-color |
例子
HTML
<div id="red"> </div>
CSS
#red { height: 200px; border: 2px dashed red; border-bottom: 3px solid green; }
执行结果