【发布时间】:2018-11-30 22:48:21
【问题描述】:
我正在尝试在图像上方放置一小块文本,并在图像后面加上标题和段落。现在浮动框正在破坏标题,因为标题应该居中但被推到左边。
这是让一段文字漂浮在图像上的最佳方式吗?
.cell {
margin-top: 8px;
vertical-align: middle;
}
.galleryPic {
width: 80%;
max-width: 388px;
height: 100%;
max-height: 220px;
}
.imgDate {
top: -8vw;
right: 12vw;
color: white;
background-color: red;
width: 20vw;
position: relative;
z-index: 99;
text-transform: uppercase;
margin: 15px;
float: right;
padding: 1vw 2vw;
}
.cell h3 {
position: relative;
text-align: center;
}
.cell p {
position: relative;
}
<div class="cell">
<img class="galleryPic">
<div class="imgDate">Jan 9, 2019</div>
<h3>Header</h3>
<p>Paragraph</p>
</div>
【问题讨论】:
-
你想在图片中加入什么文字?