[Solved] Add a small background for single line of text [closed]


You can use box-shadow for this:

span {
  font-size: 50px;
  font-weight: bold;
  box-shadow: inset 0 25px 0 white, inset 0 -22px 0 rgba(0,0,0,0.5)
}
<span>Hello!! How are you</span>

0

solved Add a small background for single line of text [closed]