1、绝对定位盒子居中
left:50%
margin-left:-宽度的一半
2、固定定位(固定导航栏)
是以浏览器的左上角为参考点
body{
padding-top:80px;
}
position:fixed;
top:0;
left:0;
z-index:9999;