CSS: highlighted text effect

后端 未结 5 1031
一个人的身影
一个人的身影 2021-01-13 17:48

I\'m trying to produce a highlighted text effect with a bit of padding, but the padding is only applied to the beginning and end, not new lines.

#highlight {         


        
5条回答
  •  甜味超标
    2021-01-13 18:34

    Solution is this CSS:

    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
    

    https://css-tricks.com/almanac/properties/b/box-decoration-break/

提交回复
热议问题