答案 0 :(得分:2)
使用pseudo-elments
和CSS样式
.
p:after{
content: "hotel hotel hotel";
position: absolute;
left: 5px;
top:2px;
color: red;
width:200px;
background-color:black;
opacity:0.5;
font-size: 48px;
z-index: -1;
}
p{
color:blue;
width:170px;
font-size: 28px;
}