好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

css实现中间文字两边横线效果

1. vert ical -align属性实现效果:

vertical-align 属性设置元素的垂直对齐方式。

该属性定义 行内元素 的基线相对于该元素所在行的基线的垂直对齐。允许指定负长度值和百分比值。

<div class="header">
    <span class="line"></span>
    <span class="text">中间文字,两边横线</span>
    <span class="line"></span>
</div>

<style>
.header
{
    width:400px;
    h ei ght:36px;
    line-height:36px;
    border:1px solid green;
    text-align: center ;
}
.line
{
    dis play :inline-block;
    width:100px;
    border -t op:1px solid  # cccccc;
    vertical-align:5px;  
  //看到网上有把.text设置为vertical-align:-5px的,试了一下感觉和.header设置的line-height有冲突,效果不太合适。所以将vertical-align设置到.line上了
}
</style>
@H_ 406 _13@

2. css 伪类 实现效果:

<div class="header">
    <div>中间文字,两边横线</div>
</div>

<style>
    .header
    {
        width:400px;
        height:36px;
        line-height: 36px;
        text-align:center;
        border:1px solid green;
        pos IT ion:relative;
    }
    .header div:before,.header div :after 
    {
        position:absolute;
        background:#ccc;
        content:"";
        height:1px;
        top:50%;
        width:100px;
    }
    .header div:before{left:10px;}
    .header div:after{right:10px;}
</style>

总结
&nbs p;

以上所述是小编给大家介绍的css实现中间文字两边横线效果 , 希望对大家有所帮助 ,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

总结

以上是 为你收集整理的 css实现中间文字两边横线效果 全部内容,希望文章能够帮你解决 css实现中间文字两边横线效果 所遇到的问题。

如果觉得 网站内容还不错, 推荐好友。

查看更多关于css实现中间文字两边横线效果的详细内容...

  阅读:42次