在做了一些研究并一无所获之后,我想知道是否有人知道一种方法可以让一些文本在图像上透明但周围有一个框,所以它仍然清晰可见。
我的尝试
HTML
<img src="http://images2.fanpop.com/images/photos/8000000/Mountains-mountains-and-waterfalls-8031277-2560-1817.jpg"/>
<p> this is some transparent text with a brown background </p>
CSS
img{
width:500px;
}
p{
top:100px;
left:20px;
position:absolute;
display:box;
color:rgba(0,0,0,0);
background:brown;
}