gpt4 book ai didi

html - 使用 flex 在图像顶部对齐文本

转载 作者:太空宇宙 更新时间:2023-11-04 02:37:52 26 4
gpt4 key购买 nike

.container{
display: flex;
align-items: center;
justify-content: center;
position:relative;
}
.text{
position:absolute;
left:0;
}
<div class="container">
<img src="http://lorempixel.com/800/800/" />
<div class="text">
<p>
some text here to be vertical aligned on the left where the image starts;
</p>

</div>

</div>

我希望该文本位于图像上方,垂直居中,位于左侧。除了使用之外还有其他解决方案吗:

position:absolute;
left:0;

我觉得用一些 flex 属性应该可以做到这一点。

谢谢!

最佳答案

.container {
position: relative;
}
.text {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
}
<div class="container">
<img src="http://lorempixel.com/800/800/" />
<div class="text">
<p>
some text here to be vertical aligned on the left where the image starts;
</p>
</div>
</div>

我做了什么:

  1. 制作一个与图像大小相同的容器:只需将 img 单独放在一个 div 中
  2. 让上面的容器成为一个定位上下文:position: relative
  3. 创建一个容器,用于对齐其中的东西,其定位上下文的大小:position: absolute0
  4. 上的所有边缘
  5. 垂直居中:display: flexalign-items: center

当然,还有很多其他方法可以达到相同的效果(甚至完全避免绝对位置),但我更推荐在这种情况下使用定位。

关于html - 使用 flex 在图像顶部对齐文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35318680/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com