由於某些原因,當我將鼠標懸停在div上時,邊框會正確動畫,但是鼠標懸停不會產生轉換。我錯過了什麼?CSS邊框不會生成動畫
http://codepen.io/anon/pen/XbPbvr
HTML:
<div class="test">
Test
</div>
LESS:
.test {
background: #eee;
border-bottom: none;
width: 300px;
height: 300px;
transition: border 100ms ease-out;
&:hover {
border-bottom: 5px solid black;
transition: border 100ms ease-out;
}
}