border-bottom-style
border-bottom-style该属性是规定元素下边框的样式。
语法
border-bottom-style: hidden; border-bottom-style: none; border-bottom-style: dotted; border-bottom-style: dashed; border-bottom-style: double; border-bottom-style: solid; border-bottom-style: ridge; border-bottom-style: inset; border-bottom-style: groove; border-bottom-style: outset; border-bottom-style: inherit;
值
| 值 | 描述 |
|---|---|
| <br-style> | 此关键词表示边框的样式。 |
例子
HTML
<div id="red"> </div>
CSS
#red {
width: 200px;
height: 200px;
border: 5px dashed red;
border-bottom-style: solid;
}
执行结果