border-left

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;
     }

执行结果

参考