Is it possible to create box-shadow effect for inline text?

前端 未结 4 654
误落风尘
误落风尘 2021-01-20 16:13

I want to create this effect:

\"enter

Is there a way to do this via CSS/JS?

4条回答
  •  天命终不由人
    2021-01-20 16:51

    This can be achieved with line-height, padding and background-color

    p {
      background: black;
      color: white;
      display: inline;
      line-height: 2;
      padding: 5px;
    }

    This is a demonstration of how to have a multiline padded background color on any amount of text. enjoy

提交回复
热议问题