How can I create custom underline or highlight for text in html or css?

前端 未结 4 1732
栀梦
栀梦 2021-02-10 14:09

I\'m trying to figure out how to create a custom background effect for text. In other words, how can I make something like this:

4条回答
  •  别跟我提以往
    2021-02-10 14:33

    Use the element and tweek the line-height

    mark {
      display: inline-block;
      line-height: 0em;
      padding-bottom: 0.5em;
    }

    Lorem ipsum

提交回复
热议问题