gpt4 book ai didi

html - 图像底部的 float 文本

转载 作者:太空宇宙 更新时间:2023-11-03 20:14:27 25 4
gpt4 key购买 nike

我正在尝试创建这样的东西: What I am trying to create但我就是做不对。这是我到目前为止所拥有的:jsfiddle .
HTML:

<div class="review">
<div class="review-head">
<h2> Batman Arkham Knight Review </h2>
</div>
</div>

CSS:

.review-head {
height: 20em;
background: url(http://www.flickeringmyth.com/wp-content/uploads/2014/03/Arkham-Knight2.jpg) no-repeat center center;
background-size: cover;
}
h2 {
color: white;
vertical-align: center;
}

我在这里错过了什么?
不管是否重要,我都试图将图像放在 Bootstrap 面板中。感谢您的帮助!

最佳答案

为您的 review-head 元素指定一个 position。这将允许您在其中放置 h2

.review-head {
height: 20em;
background: url(http://www.flickeringmyth.com/wp-content/uploads/2014/03/Arkham-Knight2.jpg) no-repeat center center;
background-size: cover;
position: relative;
}
h2 {
color: white;
vertical-align: center;
position: absolute;
bottom: 20px;
left: 20px;
}
<div class="review">
<div class="review-head">
<h2> Batman Arkham Knight Review </h2>
</div>
</div>

关于html - 图像底部的 float 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24250542/

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