1 li
去除li的小圆点使用的是list-style:none而不是text-decoration
2 jquery设置多个css属性
css({"propertyname":"value","propertyname":"value",...});
3 实现元素水平居中
~~~
width: 1200px;
height:100%;
margin: 0 auto;
margin-top:30px;
~~~
4 使用z-index
z-index需要设置position属性为absolute,或者relative或者fixed才可生效