CSS 支持动画的属性中的 height 属性以下:css
height :yes, as a length, percentage or calc()html
即:当 height 的值是 length,百分比或 calc() 时支持 CSS3 过渡。css3
因此当元素 height : auto 时,是不支持 CSS3 动画的。动画
div{ max-height: 0; transition: max-height .5s; } div:hover{ max-height: 200px; }
这里不作详细说明,能够看一下大神的demo。code