Horizontal Line in Background using Css3

前端 未结 8 1357
走了就别回头了
走了就别回头了 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:24

    You can do it with a 1% gradient like this

    .datedAside {
         background: linear-gradient(0deg, transparent 49%, #000 50%, transparent 51%);
    }
    .datedAside span{
         background: #FFF;
         padding: 0 0.5rem;
    }
    

    You'll nedd the extra span to be the same background color as the background of the component to make it look like it has "deleted" the line going behind the text.

提交回复
热议问题