你会如何在DIV中做到这一点?

时间:2014-04-22 15:00:56

标签: html css

尝试了一切,用ul's ... div's ......但它似乎没有出现。

主div有0自动保证金。主要的div是1030px宽。

我打赌这是一件愚蠢的事......

Image in DIV

1 个答案:

答案 0 :(得分:0)

Demo Fiddle

HTML

<div><span>Things to Know</span></div>

CSS:

div{
    text-align:center;
}
div:after{
    position:relative;
    display:block;
    border-top:1px solid grey;
    top:-10px;
    height:1px;
    content:'';
}
div span{
    background:white;
    position:relative;
    z-index:1;
}