【发布时间】:2017-12-09 18:15:48
【问题描述】:
有一个以 h2 为中心的图像,并希望它下面的列表也居中。现在已经挣扎了一个多小时,似乎没有任何进展。有什么建议吗?
.images {
display: inline-block;
text-align: center;
width: 33%;
/* all ements align to the largest element within the div */
vertical-align: top;
}
.images ol {
width: 70%;
}
.images ol li {
line-height: 1.2em;
border: 0;
}
<div class="images">
<h3>Panacotta Vanilla</h3>
<img src="photo1.png.png">
<p>recipe ingridients</p>
<ol>
<li>Macro free Ranged Chicken</li>
<li>Cover chicken in almond meal</li>
<li>Add cayenne pepper, chilli flakes, mixed herbs and paprika</li>
<li>Cook until all pink of chicken disappears Salad
</li>
</ol>
</div>
【问题讨论】: