【发布时间】:2022-01-18 22:22:29
【问题描述】:
努力将我的icon 居中放置在文本上方,图标的高度很好,但应该像这样:
尝试使用 flex 但找不到正确的解决方案。
.container {
display: block;
width: 400px;
height: 100px;
border: 2px solid black;
}
.icon {
width: 30px;
height: 30px;
background-color: red;
}
.text {
text-align: center;
}
<div class="container">
<div class="icon"></div>
<p class="text">We couldn't find any matches to your search. <br></br>Please try again.</p>
</div>
【问题讨论】:
-
您没有对图标应用任何居中。将文本对齐放置在父元素上,而不仅仅是文本。