gpt4 book ai didi

html - 垂直对齐图像顶部的中间和居中文本

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

我正在尝试使用垂直居中对齐和文本居中对齐将文本放置在图像上。但它们似乎都不起作用。

我的html是

<div class="hero-image">
<img src="https://s23.postimg.org/ahcg75tsb/hero.png" alt="">
<a href=""><h2>Some Sample text</h2></a>
</div>

演示 -- https://jsfiddle.net/squidraj/zkno1sc2/

是不是因为我没有在parent div中指定图片的宽度?

非常感谢任何帮助。

最佳答案

您可以在 .hero-image 上结合使用 display: flexalign-items: center;:

.hero-image {
display: flex;
position: relative;
align-items: center;
}
.hero-image img{
width: 100%;
}

.hero-image h2 {
background: #ff2bff none repeat scroll 0 0;
color: #fff;
text-align: center;
width: 200px;
margin: 0px auto;
position: absolute;
left: 0;
right: 0;
}
<div class="hero-image">
<img src="https://s23.postimg.org/ahcg75tsb/hero.png" alt="">
<a href=""><h2>Some Sample text</h2></a>
</div>

关于html - 垂直对齐图像顶部的中间和居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41739119/

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