标题右侧的分隔符

时间:2013-04-17 21:57:36

标签: html css

我想在页面的标题右侧放置一个分隔符,如下所示:

enter image description here

我试用了这段代码,但现在的样子如下:

enter image description here

以下是代码:

<h4 class="section-title">Lastest From Blog</h4>

.section-title {
    font-size:18px;
    background-image: url('images/divider-bar.png');
    background-repeat: repeat-x;
    padding-bottom: 12px;
    color: #6c6c6c;
}

这是小提琴:http://jsfiddle.net/Chead/hrYyg/

3 个答案:

答案 0 :(得分:0)

只需在标题中加上img标记,然后将文字与图片对齐

即可
<h4 class="section-title">Lastest From Blog <img src="images/divider-bar.png" /></h4>

答案 1 :(得分:0)

你去了:http://jsfiddle.net/KQdcr/

只需将文字换成白色背景的范围:

.section-title span { background: white; padding-right: 3px; }

当然,如果您的网页背景不是纯色,则无效。

答案 2 :(得分:0)

此处go Try this. 调整容器和分隔符的宽度