<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
border: 1px solid black;
-moz-column-count: 3;
-moz-column-rule: 1px outset red;
-webkit-column-rule: 1px outset red;
-webkit-column-count: 3;
-webkit-animation: mymove 5s infinite;
column-count: 3;
column-rule: 1px outset red;
animation: mymove 5s infinite;
}
@-webkit-keyframes mymove {
50% {-webkit-column-rule: 50px outset blue; }
}
@keyframes mymove {
50% {
-moz-column-rule: 50px outset blue;
column-rule: 50px outset blue;
}
}
</style>
</head>
<body>
<p>column-rule 属性是所有列规则属性的简写:</p>