我想问是否可以为同一背景图像声明多个背景位置。
我有一个名为类的跨度,page_heading
我希望这个类显示相同的图像两次,一次在文本的开头,一次在文本的结尾。
HTML:
<h1><span class="page_heading">Text</span></h1>
CSS:
.page_heading {
padding: 0 30px 0 30px;
background: #ff6600;
background: #ff6600 url('../img/star.png') no-repeat 0 50%;
}
我想这样做(我知道这是不对的,只是为了理解):
.page_heading {
padding: 0 30px 0 30px;
background: #ff6600;
background: #ff6600 url('../img/star.png') no-repeat 0 50%;
background: #ff6600 url('../img/star.png') no-repeat 100% 50%;
}