[TOC]
# 纯grid
> 第一个为对比图 div结构2层, 其他7个结构 div 三层
![](https://box.kancloud.cn/84743e24a75af02a4576616ea8865862_1032x556.PNG)
## 页面布局 (此结构需三层div)
> 第一个为对比图,与其他7个结构不一样
```
<div class="container">
<div class="line">
<img src="images/1.png" />
<p>nihao小姐姐</p>
</div>
//div布局还需复制六个
<div class="line">
<div>
<img src="images/1.png" />
<p>nihao小姐姐</p>
</div>
</div>
~~
....X6 <div class="line">
~~
</div>
```
## css样式
### 第一种
```
<style>
img {
width: 80px;
height: 80px;
}
.container {
margin: 100px;
display: grid;
grid-template-columns: repeat(4, 200px);
grid-template-rows: 200px 200px;
grid-gap: 1px;
}
.container .line {
// width,height 清除网格线重叠
width: 200px;
height: 200px;
border: 1px solid #999;
display: grid;
}
.line div {
text-align: center;
background:red;
justify-self: center;
align-self: center;
}
</style>
```
### 第二种
```
<style>
img {
width: 80px;
height: 80px;
}
.container {
margin: 100px;
display: grid;
grid-template-columns: repeat(4, 200px);
grid-template-rows: 200px 200px;
}
.container .line {
border: 1px solid #999;
display: grid;
//清除网格线重叠
margin-left: -1px;
margin-top: -1px;
}
.line div {
text-align: center;
background:red;
justify-self: center;
align-self: center;
}
</style>
```
# div加flex布局 只需俩层div
![](https://box.kancloud.cn/52bae2a999c4a441e9fb0e50861095a5_1045x561.PNG)
## 页面布局同上
## css样式
```
<style>
img {
width: 80px;
height: 80px;
}
.container {
margin: 100px;
display: grid;
grid-template-columns: repeat(4, 200px);
grid-template-rows: 200px 200px;
}
.container .line {
border: 1px solid #999;
display: grid;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-left: -1px;
margin-top: -1px;
}
.line div {
text-align: center;
background:red;
justify-self: center;
align-self: center;
}
</style>
```
- 1.基本样式
- 0.样式初始化
- 1. 渐变色
- 2. hover问题
- 3. 阴影
- 4. 选择器
- 5. border.画边线
- 6. 水平垂直居中
- 7.input 输入框需要缩进
- 8.文字问题
- 2. 方法
- 1. 定位浮动和flex
- 1. 阮一峰
- 2. position
- 3. flex
- 2. bootstrap 3
- 3. sass语法
- 4.margin-top bug 解决方法
- 5. iconfont图标
- 3. 动画特效
- 特效总结
- 动画
- css2d转换
- 过渡
- 1. 入场从无到有
- 2. 两面切换
- 3. 小三角及原理
- 4. 点击图片单独显示
- 5. 导航条吸顶
- 6. 进度条
- 7. animate效果 jquery
- 8.3D透视旋转
- 4.grid布局
- 1.grid布局 网格居中对齐
- HTML
- 第一节、学习网站
- 第二节、封装
- 第三节、快捷键使用