且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

强调HTML省略号

更新时间:2022-10-16 12:02:23

Yes, you can do this - set text-decoration: none and instead of that use border-bottom - DEMO

a {
    display: block;
    width: 185px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

a:hover {
    border-bottom: 1px solid #000;
}