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