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

后端 未结 10 2354
無奈伤痛
無奈伤痛 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:41

    A great way to do this without adding and extra spans and having more control is using the :after selector.

    Useful especially for navigation menus:

    .active a:after {
        content: '';
        height: 1px;
        background: black; 
        display:block;
    }
    

    If you want more or less space between the text and the underline, add a margin-top.

    If you want a thicker underline, add more height:

    .active a:after {
        content: '';
        height: 2px;
        background: black; 
        display:block;
        margin-top: 2px;
    }
    

提交回复
热议问题