border-left-style
border-left-style 该属性是一个用于设置各种单独的边界属性的简写属性,可用于设置一个或多个以下属性的值:border-width,border-style,border-color。
语法
border-left-style: none; border-left-style: dotted; border-left-style: hidden; border-left-style: dashed; border-left-style: solid; border-left-style: double; border-left-style: groove; border-left-style: ridge; border-left-style: inset; border-left-style: outset; border-left-style: inherit;
值
值 | 描述 |
---|---|
<br-style> | 此关键词表示边框的样式。 |
例子
HTML
<div id="red"> </div>
CSS
#red { width: 200px; height: 200px; border: 4px dashed red; border-left-style: solid; }
执行结果