html制作一个页面,使图像的说明文字在图像之中,请注意文字颜色的选择,使用户能把图像和文字区分开。
时间: 2024-03-06 14:47:46 浏览: 89
dreamweaver中怎么交互图像? dw制作鼠标经过图像换图的教程
以下是一个使用HTML制作图像说明文字在图像之中的示例页面,文字颜色为白色,以便与图像区分开来:
```html
<!DOCTYPE html>
<html>
<head>
<title>图像说明文字在图像内部</title>
<style>
.container {
position: relative;
max-width: 600px;
margin: 0 auto;
}
.image {
display: block;
max-width: 100%;
height: auto;
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 24px;
font-weight: bold;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="container">
<img src="https://via.placeholder.com/600x400" alt="示例图像" class="image">
<div class="text">
这是示例图像的说明文字,可以在图像之中显示,并且使用白色文字颜色以便与图像区分开来。
</div>
</div>
</body>
</html>
```
该示例页面包含一个`<div>`容器,其中包含了一个图像和一个说明文字。使用CSS的`position`属性,将说明文字定位在图像的中心位置。使用`background-color`和`padding`属性,为说明文字添加一个半透明的背景框,并且使文字内容居中显示。使用`color`属性,将文字颜色设置为白色,以便与图像区分开来。
阅读全文