CSS: highlighted text effect

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

    In case anyone is still looking for an answer:

    p {
        box-shadow: 0px 0px 0px 5px yellow;
        display: inline;
        line-height: 2;
        margin: -5px -5px;
        background-color: yellow;
        border-radius: 1px;
    }
    

    See jsfiddle here.

提交回复
热议问题