渐变下划线

Avatar of Chris Coyier
Chris Coyier
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%);
 }

查看CodePen上的作品 渐变下划线,作者 Chris Coyier (@chriscoyier) 在 CodePen 上发布。