[CSS]インライン要素を記述するサンプル
構文
.クラス名 span {定義コード} .クラス名 a {定義コード} .クラス名 img {定義コード} .クラス名 input{定義コード}
使用例
<style> /*インライン要素*/ .cft span { margin: 25px 25px 25px 25px; } .cft { background-color: skyblue; } </style> <!-- インライン要素のspanタグ--> <div class="cft"> <span>A01</span> <span>B02</span> <span>C03</span> <span>D04</span> </div>