CSS: Background-color on multi-line text?

前端 未结 7 1331
离开以前
离开以前 2020-12-09 05:27

Do you have an idea to add a \"background-color\" property on a multi-line text, with two difficulties:

  • Background must stop after the last word of each line
7条回答
  •  天命终不由人
    2020-12-09 05:41

    Just change the display box type to inline:

    p {
      display: inline;
    }
    

    body {
      width: 170px;
    }
    p {
      display: inline;
      background: black;
      color: white;
    }

    Lorem ipsum dolor sit amet, consectetur adipiscing elit.

    And if there is space between each line, then set font-size equal to line-height, or v.v.

提交回复
热议问题