Horizontal Line in Background using Css3

前端 未结 8 1327
走了就别回头了
走了就别回头了 2021-02-07 08:05

How to implement this type of style to text using only css3, means a horizontal line in the middle of the tag... Can it be possible using pure css...

8条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-07 08:30

    Here's one way to do it by adding a span inside the p.

    HTML:

    4 weeks ago

    CSS:

    p {background: #000; height:1px; margin-top:10px;}
    p span{background: #fff; padding:10px; position:relative; top:-10px; left: 20px}​
    

    DEMO: http://jsfiddle.net/9GMJz/

提交回复
热议问题