Is it possible to make a squiggly line?

前端 未结 12 1688
无人及你
无人及你 2021-02-01 19:04

If I wanted to make a horizontal line, I would do this:




        
12条回答
  •  爱一瞬间的悲伤
    2021-02-01 19:35

    If you want the underline of some text to be a squiggly line, you can use the following css:

    span {
      text-decoration-line: underline;
      text-decoration-style: wavy;
      text-decoration-color: red;
    }
    Example text here

    Source: https://developer.mozilla.org/en/docs/Web/CSS/text-decoration-line#example

提交回复
热议问题