收获
- 小div在大div里面垂直居中的方法:
.parent {
width:800px;
height:500px;
border:2px solid #000;
position:relative;
}
.child {
width:200px;
height:200px;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
background-color: red;
}
- text-transform 属性,设置文字的格式,text-transform:uppercase 代表大写字母
- letter-spacing 属性,设置文字的字间距
- 图标字体的使用 fontawesome
- 做了一个PC页面,排版已经完成 链接
打算
把页面的媒体查询和js效果加上去