【发布时间】:2020-11-08 00:29:59
【问题描述】:
尝试使用 flexbox 在图像中居中 div(我只想要 flexbox),但由于 img 没有结束标签,我无法使其工作。怎么办?
.uno {
display: flex;
justify-content: center;
align-items: center;
}
<div class="uno">
<img src="https://www.placecage.com/300/300" alt="">
<h1>Center this text</h1>
</div>
这会将我的文本放在中间,但在 img 的右侧。只有 flexbox 解决方案。
【问题讨论】:
-
您是否要在图片上方放置文字?
-
如果您将图像作为背景。将文本对齐到中心会很容易
-
@KPranavRam - 不,水平和垂直居中
-
@DanielprabhakaranN - 我知道,但我不能。就像这里介绍的那样。
-
img 中的 Div,hm 很有趣...