我想要这篇文章的效果: http: //css-tricks.com/text-blocks-over-image/
但是我想知道在用 CSS 而不是 HTML 定义图像时该怎么做。
如果我创建一个比前一行更长的新行,它会为两条线创建一个与新行长度相同的背景色块。
实现此效果的正确方法是什么(无需在 HTML 中设置图像)?
===附加信息===
这是我之前尝试的..
HTML:
<div class="img-main-wide">
<span class="img-text-green">
"be bold, and venture to be wise."<br />"Begin, be bold, and venture to be wise."
</span>
</div>
CSS:
.img-main-wide{
background-image: url(../images/Pyramids-Egypt.jpg);
max-width: 100%;
width: 100%;
height: 80%;
background-size: cover;
position: relative;
}
.img-text-green{
position: absolute;
margin-left: 1em;
top: 10em;
left: 0;
color: white;
padding-right: .5em;
padding-left: .5em;
background-color: rgba(51,102,0,0.8);
font-size: 36px;
font-style: oblique;
}