<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3 column-gap 属性动画示例- 基础教程(div.cn)</title>
<style>
.animated {
padding: 15px;
border: 1px solid #000;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-animation: test 4s infinite; /* Chrome, Safari, Opera */
animation: test 4s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes test {
50% {-webkit-column-gap: 100px;}
}
/* Standard syntax */