原文来自:snippets.barretlee.com,只是为了自己学习收集特意fork了一遍。如有侵权,联系删除:i@webcliwn.net

演示:
小胡子哥的个人网站

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
a {
position: relative;
padding-bottom: 2px;
text-decoration: none;
}

a:hover::after {
content: "";
position: absolute;
bottom: 2px;
left: 0;
height: 1px;
width: 100%;
background: #444;
background: linear-gradient(left, transparent 0%,#444 50%,transparent 100%);
}