目的
- 左と下に罫線を入れるだけのシンプルな見出しが欲しい。
- 2つの罫線は僅かに余白を付け、少しズラしてやや立体的に見せたい。
HTML
<h6 class="layout_2_3"><span>サンプルテキスト</span></h6>
CSS
.layout_2_3 {
display: inline-block;
padding-top: 5px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 20px;
border-bottom-style: solid;
border-bottom-width: 2px;
border-bottom-color: #000000;
}
.layout_2_3 span {
font-size: 16px;
font-weight: bold;
padding-top: 0px;
padding-right: 5px;
padding-bottom: 0px;
padding-left: 5px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 5px;
border-left-style: solid;
border-left-width: 3px;
border-left-color: #000000;
}
.layout_2_3 {
display: inline-block;
padding-top: 5px;
padding-right: 0px;
padding-bottom: 2px;
padding-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 10px;
border-bottom-style: solid;
border-bottom-width: 2px;
border-bottom-color: #000000;
}
.layout_2_3 span {
font-size: 14px;
font-weight: bold;
padding-top: 0px;
padding-right: 5px;
padding-bottom: 0px;
padding-left: 5px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 4px;
border-left-style: solid;
border-left-width: 3px;
border-left-color: #000000;
}