Hover effect : expand bottom border
问题 I\'m trying to get a transition hover effect on border that the border expands on hover. h1 { color: #666; } h1:after { position: absolute; left: 10px; content: \'\'; height: 40px; width: 275px; border-bottom: solid 3px #019fb6; transition: left 250ms ease-in-out, right 250ms ease-in-out; opacity: 0; } h1:hover:after { opacity: 1; } <h1>CSS IS AWESOME</h1> I\'ve tried this on Jsfiddle 回答1: To expand the bottom border on hover , you can use transform:scaleX'(); (mdn reference) and transition