首頁 > web前端 > css教學 > 主體

css如何實現中間文字,兩邊橫線的標題效果? (程式碼範例)

青灯夜游
發布: 2018-10-24 17:16:08
轉載
6768 人瀏覽過

這篇文章帶給大家的內容是介紹css如何實現中間文字,兩邊橫線的標題效果? (程式碼範例)。有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。

1. vertical-align屬性實作效果:

vertical-align 屬性設定元素的垂直對準方式。

此屬性定義行內元素的基線相對於該元素所在行的基線的垂直對齊。允許指定負長度值和百分比值。

<div class="header">
    <span class="line"></span>
    <span class="text">中间文字,两边横线</span>
    <span class="line"></span>
</div>
登入後複製
<style>
.header
{
    width:400px;
    height:36px;
    line-height:36px;
    border:1px solid green;
    text-align:center;
}
.line
{
    display:inline-block;
    width:100px;
    border-top:1px solid #cccccc;
    vertical-align:5px;  
  //看到网上有把.text设置为vertical-align:-5px的,试了一下感觉和.header设置的line-height有冲突,效果不太合适。所以将vertical-align设置到.line上了
}
</style>
登入後複製

2. css偽類別實作效果:

<div class="header">
    <div>中间文字,两边横线</div>
</div>
登入後複製
<style>
    .header
    {
        width:400px;
        height:36px;
        line-height: 36px;
        text-align:center;
        border:1px solid green;
        position: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>
登入後複製

#

以上是css如何實現中間文字,兩邊橫線的標題效果? (程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
css
來源:cnblogs.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板