答案 0 :(得分:0)
将该单词包装成跨度。将伪元素与背景图像一起使用。
body {
background: white;
}
h1 {
margin-top: 50px;
}
span {
position: relative;
}
.background {
color: red;
}
.background:before {
content:'';
position: absolute;
right: 0;
top: -25px;
width: 100%;
height: 35px;
background: url(http://redhatsociety.com/sites/all/themes/red_hat_society/images/funstuff/hearts.png) no-repeat right top;
}
<h1>
Everyone is <span class="background"><span class="content">special</span></span>
</h1>