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