我想在一些文本旁边放一张图片。我希望它与文本垂直居中但向左偏移,因此它不会与文本重叠。我可以做到这一点,但是每当我调整浏览器大小并使其更小时,图像都不会移动。
我尝试将文本放在文本中,但每当我这样做时,文本都无法正确居中。我还必须在图像下方添加一个链接,所以我认为这不是最好的方法。
这是我的代码问题的 JSBin:http: //jsbin.com/evasix/2/ **我在 jsbing 中包含了我的完整代码,因为我认为某些东西可能被另一个 div 类继承。
HTML:
<div class="middle">
<div class="side-img">
<h2>Millions of entrepreneurs, freelancers, small<br>businesses, and departments inside big<br> organizations rely on our web apps.</h2>
<img src="images/img-customerss.png" class="customers">
</div>
</div>
CSS:
h2 {
position: relative;
top: -30px;
text-align: center;
font-size: 45px;
color: #232323;
font-family: 'Crimson Text', serif;
line-height: 50px;
}
.customers {
position: relative;
bottom: 150px;
left: 425px;
}