在图像顶部垂直对齐中间和居中的文本 [英] Vertical align middle and centered text on top of image

查看:97
本文介绍了在图像顶部垂直对齐中间和居中的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用垂直对齐的中间和文本对齐中心将文本放置在图像上。

I am trying to place the text over an image using vertical aligned middle and text align center. But none of them seems working.

我的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/

是因为我没有指定图像的宽度在父div中?

Is it because I am not specifying the width of the image in parent div?

任何帮助都将受到高度赞赏。

Any help is highly appreciated.

推荐答案

您可以在 .hero-image 上结合使用 display:flex align-items :中心;

You can use display: flex on the .hero-image in combination with align-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>

div>

这篇关于在图像顶部垂直对齐中间和居中的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆