答案 0 :(得分:2)
可以使用列表:
<ul class="list">
<li>
<div class="box">
<span class="icon"></span>
<div class="container">
<h2>Headline</h2>
<small>Description is small.</small>
</div>
</div>
</li>
</ul>
CSS:
.list {
list-style: none;
margin: 0;
padding: 0;
}
.box > :first-child {
background-color: #000;
float: left;
height: 48px;
width: 48px;
}
.box > :not(:first-child) {
margin-left: 60px;
}
h2 {
margin-bottom: 0;
}
small {
display: inline-block;
}