css中可利用:before、:after和content屬性來在文字兩邊加上橫線;語法「E:before,E:after{content:"";flex:1 1;border-bottom :2px solid;}”,E為包含文字的元素。
本教學操作環境:Windows7系統、css3版本、Dell G3電腦。
教學推薦:css影片教學
css在文字兩邊加上橫線的方法
在css中,可以利用:before、:after選擇器和content屬性來實現。
:before 選擇器在選定的元素前插入內容,:after 選擇器在選定的元素之後插入內容。
content 屬性與 :before 及 :after 偽元素搭配使用,來插入產生內容。
範例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> h4 { display: flex; flex-direction: row; } h4:before, h4:after { content: ""; flex: 1 1; border-bottom: 2px solid #000; margin: auto; } img { height: 100px; width: 100px; border-radius: 50%; } </style> </head> <body> <h4>PHP中文网</h4> </body> </html>
效果圖:
#更多程式設計相關知識,請造訪:程式教學! !
以上是css怎麼在文字兩邊加上橫線的詳細內容。更多資訊請關注PHP中文網其他相關文章!