<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>w3cschool(w3cschool.cn)</title>
<style>
#myDIV {
border: 1px solid black;
-moz-column-width: 300px;
-webkit-column-width: 300px;
-webkit-animation: mymove 5s infinite;
column-width: 300px;
animation: mymove 5s infinite;
}
@-webkit-keyframes mymove {
50% {-webkit-column-width: 100px;}
}
@keyframes mymove {
50% {
-moz-column-width: 100px;
column-width: 100px;
}
}
</style>
</head>
<body>
<p>column-width 属性支持动画效果。</p>
<p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p>