Text with multiple underlines

前端 未结 5 729
暖寄归人
暖寄归人 2021-02-04 05:10

My application is that it is some online document to which user can annotate and underline the text for reference. Now this can be done by multiple users, hence need to have dif

5条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-04 05:54

    you could do it something like this

    p {
      text-decoration: underline overline line-through;
      border-top: 3px solid red;
      border-bottom: 3px solid green;
      display: inline-block;
      padding: 2px 0 0 0;
      font-size: 50px;
      margin: 0;
    }

    Test

提交回复
热议问题