增加命中区域link同时增加文字下划线

Increasing hit area of a link also increases text's underline

我试图增加菜单中 link 的点击区域,但这样做也会增加文本的下划线效果。我试过填充和宽度但没有改进。我想要一种效果,就像 highfive mobile menu(Underline from left). Here is the fiddle 中的效果,这是代码

.hvr-underline-from-left {
text-decoration:none;
padding: 3px 0;
color: #000;
cursor: pointer;

  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  
  right: 100%;
 bottom : 7px;
  background: #E13F3F;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
<html>
  <body>
    <a class="hvr-underline-from-left" href="#">About  </a>
  </body>
</html>

您可以在 a 标签内添加一个 span,并将下划线效果放在跨度上。 这样您就可以在不影响下划线效果的情况下向 link 元素添加填充。

a {
  padding: 20px;
  display: inline-block;
  background: #eee;
}

.hvr-underline-from-left {
  text-decoration: none;
  padding: 3px 0;
  color: #000;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 7px;
  background: #E13F3F;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

a:hover .hvr-underline-from-left:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}
<html>

<body>
  <a href="#"><span class="hvr-underline-from-left">About</span></a>
</body>

</html>