本文持续更新
设置文本水平居中
text-align:center
设置文本垂直居中
height:100px;
line-height:100px;
a标签去除下划线
a{text-decoration:none;}
无序列表消除默认点
list-style:none;
无序列表水平排列
方法1:
display:inline-block;
方法2:
float:left;
元素水平居中
margin:0 auto;
写在前面的消除默认样式
*{margin:0;padding:0;list-style:none;}