プロパティ border-top-style
プロパティ border-top-style は、上ボーダーのスタイルを指定します。このプロパティの値は、プロパティ border-style と同じ値を使用します。
構文
セレクター {
border-top-style: 値;
}
例
上ボーダーを dashed(破線)タイプに設定します:
<div id="elem"></div>
#elem {
border-top-style: dashed;
border-top-width: 1px;
border-top-color: black;
background: #f9f9f9;
width: 300px;
height: 100px;
}
:
関連項目
-
プロパティ
border-top-color,
上ボーダーの色を指定します -
プロパティ
border-top-width,
上ボーダーの太さを指定します -
プロパティ
border-top,
上側のボーダーを指定します -
プロパティ
border-width,
すべての辺のボーダーの太さを指定します