## sass
1. @mixin定义公共的css
```
@mixin wh($w:100px, $h:100px){
width: $w;
height: $h;
}
.one {
@include wh;
background: red;
}
.two {
@include wh(200px, 200px);
background: yellow;
}
```
2. @extend实现继承
```
.head {
width: 100px;
height: 100px;
color: red;
}
.foot {
@extend .head;
}
```
3. for循环快速生成栅格布局
```
@media (min-width:992px){
@for $i from 1 to 13 {
.col-md-#{$i}{
width:100%/12*$i;
}
}
}
@media (min-width: 768px) and (max-width: 992) {
@for $i from 1 to 13 {
.col-sm-#{$i}{
width: 100%/12*$i;
}
}
}
@media (max-width: 768px){
@for $i from 1 to 13 {
.col-xs-#{$i}{
width: 100%/12*$i;
}
}
}
```
4. 引入外部css的方式
```
@import "base.css"; //引入css的绝对路径
@import "base.scss"; //直接将编译好的'base.css'写入
- 空白目录
- 1. css选择器
- 1.1 基础选择器
- 1.2 伪类
- 1.3 first-child与:first-of-type的区别
- 1.4 nth-child(:not())与nth-of-type(:not())
- 1.5 属性选择器
- 2. html标签分类&css样式继承
- 2.1 html标签分类
- 2.2 样式继承
- 2.3 font
- 3. css动画
- 1. transition
- 2. animation
- 4. 布局位置方面
- 4.1 实现图片左右垂直居中
- 4.2 父元素中第一个子元素margin-top无效问题
- 4.3 position定位
- 5. 关于浮动
- 5.1 浮动的呈现效果
- 5.2 清除浮动的三种方式
- 5.3 inline-block与block浮动的对比
- 6. 弹性布局
- 7. border
- 7.1 添加border不影响盒子大小的三种方式
- 7.2 利用border画三角形
- 8. css预处理--sass
- 8.1 变量
- 8.2 嵌套
- 8.3 导入SASS文件
- 8.4 静默注释
- 8.5 混合器@mixin
- 8.6 继承@extend
- 8.7.function
- ! element语法
- 9. grid 布局
- 10. filedset 使用
- css面试题
- 1.题目汇总
- 2.回流(重排)和重绘
- 3.浏览器渲染流程
- 4.水平垂直居中
- 5.flex布局