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