Is there any way to make the HTML underline thicker?

后端 未结 5 2110
梦如初夏
梦如初夏 2021-01-12 19:24

I have a centered div with a nested h1 inside. Is there any way to underline it with a thicker line than the html default?

5条回答
  •  醉酒成梦
    2021-01-12 20:15

    Since you don't always want border-bottom (eg, item may have padding and it will appear too far away), this method works best:

    h1:after {
        content: '';
        height: 1px;
        background: black; 
        display:block;
    }
    

    If you want a thicker underline, add more height

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

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

提交回复
热议问题