text-decoration: underline vs border-bottom

后端 未结 7 1816
后悔当初
后悔当初 2021-02-13 04:04

What is the difference to use {text-decoration: underline} and {border-bottom: ...}?

which is easy to style and cross browser compatible?

7条回答
  •  北荒
    北荒 (楼主)
    2021-02-13 04:34

    Try this border with 1px image

    a:hover {
        background: url("img/bg-link-hover.png") repeat-x scroll 0px 92% transparent;
        background-color: transparent;
        background-image: url("img/bg-link-hover.png");
        background-repeat: repeat-x;
        background-attachment: scroll;
        background-position: 0px 92%;
        background-clip: border-box;
        background-origin: padding-box;
        background-size: auto auto;
    }
    

提交回复
热议问题