<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
border: 1px solid black;
-moz-column-count: 3;
-moz-column-rule: 1px outset red;
-webkit-column-count: 3;
-webkit-column-rule: 1px outset red;
-webkit-animation: mymove 5s infinite;
column-count: 3;
column-rule: 1pxpx outset red;
animation: mymove 5s infinite;
}
@-webkit-keyframes mymove {
50% {-webkit-column-rule-width: 50px;}
}
@keyframes mymove {
50% {
-moz-column-rule-width: 50px;
column-rule-width: 50px;
}
}
</style>
</head>
<body>
<p>column-rule-width 属性支持动画效果。</p>
<p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p>