border-bottom-width
border-bottom-width 该属性是一个用于规定一个元素下边框的宽度。
语法
border-bottom-width: 20em; border-bottom-width: 3px; border-bottom-width: thin; border-bottom-width: medium; border-bottom-width: inherit;
值
值 | 描述 |
---|---|
<br-width> | 此关键词表示边框的宽度。 |
例子
HTML
<div id="red"> </div>
CSS
#red { width: 200px; height: 200px; border: 2px solid red; border-bottom-width: 4px; }
执行结果