CSS decrease space between text and border

后端 未结 5 1618
再見小時候
再見小時候 2021-02-05 19:35

When hovering a link I want it to get an underline. The underline should be 2px strong and 4px below the text.

With

text-decoration: underline

5条回答
  •  萌比男神i
    2021-02-05 19:49

    This Line works for me:

    .main-nav ul li {
        padding: 0 10px;
    }
    .main-nav .main-menu  li a {
        border-right: 2px solid #262626; 
        padding: 7px;
    }
    

提交回复
热议问题