CSS中如何实现图片上写字 在网页设计中,有时候我们想给一个图片加上一些文字描述,那么该怎样实现呢?这里我们使用CSS来解决这个问题。 首先,我们需要在HTML中引入需要添加文字的图片,如下所示: ...
CSS中如何实现图片上写字
在网页设计中,有时候我们想给一个图片加上一些文字描述,那么该怎样实现呢?这里我们使用CSS来解决这个问题。
首先,我们需要在HTML中引入需要添加文字的图片,如下所示:
<div class="image-wrap">
<img src="example.jpg" alt="Example Image">
<p class="img-description">这是一张示例图片</p>
</div>
.image-wrap {
position: relative;
display: inline-block;
}
<br>
.img-description {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 10px;
font-size: 14px;
z-index: 1;
}