Is there any way to make the HTML underline thicker?

后端 未结 5 2111
梦如初夏
梦如初夏 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:13

    You may be able to achieve the same visual effect with border-bottom-width;

    h2
    {
      border-bottom-color:black;
      border-bottom-style:solid;
      border-bottom-width:15px;
    }d
    

提交回复
热议问题