CSS: highlighted text effect

后端 未结 5 998
一个人的身影
一个人的身影 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:40

    You need to set the display to inline-block or block.

    #highlight {
        display: inline-block;
        /* ... */
    }
    

提交回复
热议问题