CSS decrease space between text and border

后端 未结 5 1548
再見小時候
再見小時候 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条回答
  •  迷失自我
    2021-02-05 19:45

    One quick solution that comes into my mind is to apply the border on a pseudo-element:

    .border{
        position: relative;
    }
    
    .border:hover::after{
        content:'';
        position:absolute;
        width: 100%;
        height: 0;    
        left:0;
        bottom: 4px;                    /* <- distance */
        border-bottom: 2px solid #000;  
    }
    

    (example)

提交回复
热议问题