How make text-decoration: underline with 2px padding?

后端 未结 10 2316
無奈伤痛
無奈伤痛 2021-02-07 02:19

I like an obedient frotend developer must create underline with 2px padding instead of 1px by default. Is exist simple solution for this?

PS Yeahh guys, I know about div

10条回答
  •  生来不讨喜
    2021-02-07 02:31

    For cross-browsing it is better to use text-underline-offset over the text-underline-position, because text-underline-position isn't supported by iOS Safari

    So use this answer: https://stackoverflow.com/a/63607426/1894907

    #line{
        text-decoration-line: underline;
        text-underline-offset: 2px;
    }
    

提交回复
热议问题