Min's blog

I choose to see the beauties in the world.

导航

常见前端面试题CSS部分

Posted on 2019-08-02 13:11  Min77  阅读(148)  评论(0编辑  收藏  举报

1.盒模型

IE 盒子模型:IE的width部分包含了 border 和 pading;

标准 W3C 盒子模型: width/height+border+padding+margin;

2.清除浮动、

  1). overflow : hidden;

  2). .clearfix:after{ display : block; content : ""; height : 0; clear : both; visibility : hidden;}

3.CSS3旋转动画:

@-webkit-keyframes spin {
  0% {
    -webkit-transform:rotate(0deg);
  }
  50% {
    -webkit-transform:rotate(-180deg);
  }
  100% {
    -webkit-transform:rotate(-360deg);
  }
}
-webkit-animation:spin 1.5s linear infinite;
-moz-animation:spin 1.5s linear infinite;

 4.