|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
a { line-height: 1; display: inline-block; color:#ffeb3b; text-decoration:none; cursor: pointer; } a:after { display: block; content: ""; height: 2px; width: 0%; background-color: #ffeb3b; transition: width .3s ease-in-out; } a:hover:after, a:focus:after { width: 100%; } |