您好,登錄后才能下訂單哦!
這篇文章主要介紹css實(shí)現(xiàn)中間文字,兩邊橫線標(biāo)題效果的方法是什么,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
1. vertical-align屬性實(shí)現(xiàn)效果:
vertical-align 屬性設(shè)置元素的垂直對齊方式。
該屬性定義行內(nèi)元素的基線相對于該元素所在行的基線的垂直對齊。允許指定負(fù)長度值和百分比值。
<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; //看到網(wǎng)上有把.text設(shè)置為vertical-align:-5px的,試了一下感覺和.header設(shè)置的line-height有沖突,效果不太合適。所以將vertical-align設(shè)置到.line上了 } </style>
2. css偽類實(shí)現(xiàn)效果:
<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實(shí)現(xiàn)中間文字,兩邊橫線標(biāo)題效果的方法是什么的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。