【发布时间】:2017-02-05 01:28:20
【问题描述】:
为什么边框会瞬间消失,而不是像其他属性一样慢慢消失?
注意:在ie中边框是瞬间出现的,而不是2秒的延迟。
.figure {
height: 160px;
width: 160px;
background-color: red;
transition-property: all;
transition-duration: 2s;
}
.figure:hover{
background-color: blue;
border: 10px solid pink;
color: yellow;
}
<div class='figure'>Stackoverflow</div>
【问题讨论】:
标签: html css css-transitions