效果:
代码:
a{padding: 10px 10px; position: relative;} a:before{content: ''; width: 100%; height: 3px; background-color: #f00; transform: scaleX(0); -webkit-transform: scaleX(0); transition: all 0.2s; -webkit-transition: all 0.2s; position: absolute; bottom: 0px; left: 0px;} a:hover{color: #0000d0;} a:hover:before{transform: scaleX(1); -webkit-transform: scaleX(1);}