这三节responsive布局是理论基础, 真正的响应式布局是要有框架的, 比如bootstrap, 在慕课网有bootstrap的讲解. 我是学完了这里,又学完了bootstrap, 最后再回来巩固基础的. 第二遍学习比第一遍学习简单多了,秒懂的感觉.
2015-02-12
body {
display:flex;
align-items: center;
justify-content:center;
}
display:flex;
align-items: center;
justify-content:center;
}
2015-02-12
@-webkit-keyframes around{}
-webkit-animation-name:around;
-webkit-animation-duration: 10s;
-webkit-animation-timing-function: ease;
-webkit-animation-delay: 1s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-name:around;
-webkit-animation-duration: 10s;
-webkit-animation-timing-function: ease;
-webkit-animation-delay: 1s;
-webkit-animation-iteration-count:infinite;
2015-02-11