border-left 该属性规定元素的左边框属性。
border-left: 3px; border-left: 4px dashed; border-left: top solid red;
| 值 | 描述 |
|---|---|
| <br-width> | 此关键词表示边框的宽度。详见 border-left-width |
| <br-style> | 此关键词表示边框的样式。详见 border-left-style |
| <color> | 此关键词表示边框的颜色。详见 border-left-color |
HTML
<div id="red"> </div>
CSS
#red {
width: 200px;
height: 200px;
border: 2px solid red;
border-left: 5px dashed;
}
执行结果