2

I would like to have a divider on my page that looks like this:

My

What is the best way to do that?

4

5 回答 5

2

html

<h3><span>My latest work</span></h3>

css

h3 {
position:relative;
text-align:center;}

h3 span {
    display:inline-block;
    padding:0 10px;
    background:#fff;
}
h3:before {
    content:"";
    display:block;
    position:absolute;
    z-index:-1;
    left:0;
    right:0;
    top:50%;
    height:1px;
    background:#ccc;
}
于 2013-08-29T23:32:36.990 回答
2

我们可以在没有图像或屏蔽线的情况下做到这一点

HTML

<div class="rule">
    <div class="line"><div></div></div>
    <div class="words">words are cool</div>
    <div class="line"><div></div></div>
</div>

CSS

.rule {
    display: table;
}

.rule>div {
    display: table-cell;
    white-space:nowrap;
}

.line>div {
    border-bottom: 1px solid silver;
    height: 1px;
}

.words {
    padding: 0 5px;
}

.line {
    width: 50%;
    vertical-align: middle;
}
于 2013-08-29T23:35:42.403 回答
1

演示:http: //jsfiddle.net/5tqE5/1/

attr()旧版浏览器不支持此用途。它可以用一个额外的元素替换。

<div class="lines" data-text="Some Text Goes Here"></div>

.lines {
    position: relative;
    font-size: 20px;
    font-family: sans-serif;
    margin: 0 auto;
    border-top: 1px solid silver;
    margin-top: 20px;
}

.lines:before{
    content: attr(data-text);
    background-color: #fff;
    position: absolute;
    text-align: center;
    left: 50%;
    width: 220px;
    margin-left: -110px;
    padding: 10px;
    top: -20px;
}
于 2013-08-29T23:35:31.293 回答
0

不知道“最好的” - 你没有给出评估它的条件。最小、最快、最兼容等。

Anyhoo,我刚刚从您的图像中截取了 1 像素宽的切片并保存了它。然后我将它用作 div 的背景图像。

CSS:

#myDiv
{
    background: url(horizline1x41px.png) repeat;
    text-align: center;
    line-height: 41px;
}
#myDiv span
{
    padding-left: 16px;
    padding-right: 16px;
    background: white;
    font-weight: bold;
    font-size: 1.5em;
}

HTML:

<div id='myDiv'><span>OUR LATEST WORK</span></div>
于 2013-08-29T23:26:18.340 回答
0

演示:http: //jsfiddle.net/8zve4/

我不喜欢额外的标记,但这应该可以。

CSS:

.hline {
  border: 1px solid #EEE;
  color: #666;
  font-family: helvetica;
  font-weight: bold;
  font-variant: small-caps;
  letter-spacing: .1em;
  line-height: 0px;
  text-align: center;
  text-transform: uppercase;
}

.hline > span {
  background-color: #FFF;
    padding: 0px 1em;
}

HTML:

<div class="hline"><span>Our latest work</span></div>
于 2013-08-29T23:34:03.333 回答