在HTML和CSS中非常幼稚,除了创建图像之外我不能这样做。那么,如何创建一个重叠图像的文本,背景颜色?
详情:
我有方形图片,我想添加重叠文字。此文本应具有跨越整个图像的背景颜色,并应垂直和水平居中,如图所示。
如何在HTML + CSS中执行此操作?我想避免创建图像。
谢谢!
答案 0 :(得分:1)
我使用了企鹅的样本图像。
HTML代码 -
<div class="imageShadow textCenter">
<h2>Hello</h2>
</div>
CSS代码 -
.imageShadow {
background:
linear-gradient(
rgba(0, 0, 0, 0.8),
rgba(0, 0, 0, 0.8)
),
url('http://amolife.com/image/images/stories/Animals/penguins%20(8).jpg');
background-size: cover;
width: 300px;
height: 200px;
margin: 10px 0 0 10px;
position: relative;
float: left;
}
.textCenter h2 {
color: white;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
font-size: 2rem;
transform: translate(-50%, -50%);
}
如果您希望在行动中看到它,这是一个小提琴 - http://jsfiddle.net/SarhadSalam/wut8gtwq/
答案 1 :(得分:0)
首先,创建一个仅包含图像的周围容器。然后,在具有
的容器中创建另一个DIVposition: absolute;
width: 100%;
height: 100%;
opacity: 0.5;
text-align: center;
还添加所需的background-color
,font-size
和color
,并尝试不同的不透明度值。
答案 2 :(得分:0)
试试这个
位置:绝对; 填充:30像素; (根据图像的页面对齐方式进行更改) text-align:center; 背景色:#CCC; 的z-index:1; (如果没有为前一个图像给出z-index,否则给出更多的值)
答案 3 :(得分:0)
我猜你想要在悬停时创建叠加图像。你可以这样做。
h3, p {
margin: 0;
}
.box {
text-align: center;
position: relative;
float: left;
}
.box-hover {
background: white;;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: 0.3s all ease-in;
}
.box:hover .box-hover {
opacity: 0.9;
}
&#13;
<div class="box">
<img src="http://placehold.it/350x150/000000/ffffff">
<div class="box-hover">
<div class="box-hover-content">
<h3>Title</h3>
<p>Lorem ipsum dolor sit amet, <br> consectetur adipisicing.</p>
</div>
</div>
</div>
&#13;