代码示例:(标识:cssref_anim_border-top-width)
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  width: 300px;
  height: 200px;
  border: 1px solid black;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  50% {border-top-width: 15px;}
}
</style>
</head>
<body>

<h1>border-top-width 的动画效果:</h1>

<p>逐渐将 border-top-width 属性从 1px 更改为 15px,然后再改回:<p>
<div id="myDIV"></div>

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

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