border-top-style プロパティ CSS(Cascading Style Sheets)

CSS

border-top-style プロパティは上辺のボーダーのスタイルを指定するプロパティです。
スタイルの値は border-style を参照

書式

{border-top-style: -style;}

border-top-styleのサンプル

border-style で四辺を solid で設定した後で、上辺を dotted で上書きしています。

<div class="dbts">top</div>
div {
  height: 80px;
  width: 120px;
  margin: 10px;
  padding: 10px;
  background-color: #80f080;
  border-width: 8px;
}
.dbts {
  border-style: solid;
  border-top-style: dotted;
}

関連項目

コメント

タイトルとURLをコピーしました