<div>苏飞论坛</div>
div { width: 100px; height: 100px; background: red; color: #fff; -webkit-transition: height 4s; transition: height 4s; }
div { width: 100px; height: 100px; background: red; color: #fff; -webkit-transition: width 2s, height 2s, -webkit-transform 2s; transition: width 2s, height 2s, transform 2s; } div:hover { width: 200px; height: 200px; -webkit-transform: rotate(90deg); transform: rotate(90deg); }