シンプルなボックス
コンテンツ内に挿入できそうなシンプルな囲いです。
ボックスの見出し
ボックスの内容です。ボックスの内容です。ボックスの内容です。ボックスの内容です。ボックスの内容です。ボックスの内容です。
Source Code
右上の「コピー」からご利用ください。
コピー
<div class="my-parts">
<div class="my-parts-title">ボックスの見出し</div>
<p>ボックスの内容です。ボックスの内容です。ボックスの内容です。ボックスの内容です。ボックスの内容です。ボックスの内容です。</p>
</div>
コピー
.my-parts {
display: inline-block;
width: 300px;
max-width: 100%;
border: 1px solid #eee;
border-radius: 0px;
padding: .8em;
text-align: left;
}
.my-parts-title {
padding: 0;
font-size: 1.2em;
font-weight: bold;
margin-bottom: .4em;
}
.my-parts > :last-child {
margin-bottom: 0;
}