我怎样才能在里面给背景两边<h3> tag
<h3>heading goes here</h3>
如下:
+---+--------------------------+------+
|>>>+ heading goes here |<<< +
+---+--------------------------+------+
像这样?
h3{
background: url('path') no-repeat left center;
background: url('path') no-repeat right center;
}
更新
好的,我用过这样一个:
#custom-module .moduletable:nth-child(2) h3 {
background: url(../images/icon-news.jpg)no-repeat center left;
position: relative;
}
#custom-module .moduletable:nth-child(2) h3:after{
background: url("../images/icon-news.jpg") no-repeat right center;
content: " ";
position: absolute;
right: 0;
}
:after
但未显示伪中使用的相同背景图像。