代码示例:(标识:cssref_anim_height)
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  height: 100px;
  background-color: coral;
  color: white;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  50% {height: 500px;}
}
</style>
</head>
<body>

<h1>height 的动画效果:</h1>

<p>逐步将 div 元素的高度从 100px 改为 500px,然后再改回 100px:<p>

<div id="myDIV">
  <h1>My DIV</h1>
</div>

<p><b>注释:</b>CSS 动画在 Internet Explorer 9 以及更早版本中不起作用。</p>

</body>
</html>
运行结果: