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

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

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

<p>逐渐将 DIV 元素的宽度从 120px 更改为 500px,然后再改回 120px:<p>

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

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

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