How to Double Strikeout a Text in HTML?

前端 未结 9 703
一向
一向 2021-02-07 04:26

I know about , and tags. These tags strike out a text once, however I want to strike out a text 2 time

9条回答
  •  庸人自扰
    2021-02-07 05:18

    Not that complicated with css:

    .textDoubleStrikeThru {
        text-decoration: line-through;
        text-decoration-style: double;
    }
    

    Seems like this produces the strike-through positioned where the single strike-through is positioned and then adds a second strike-through beneath that.

提交回复
热议问题