一、把所有标签的内外边距清零
css"> * {padding: 0;margin: 0;}
二、把斜体的文字不倾斜
css"> i,em {font-style: normal;}
三、去掉li标签前面的小圆点
css"> li {list-style: none;}
四、照顾低版本浏览器,实现兼容性
css"> img {border: 0;vertical-align: middle;}
五、鼠标经过按钮时变成小手样式
css">button {cursor: pointer;}
六、a标签初始化
css"> a {text-decoration: none;color: aliceblue;}
七、清除浮动
css"> .clearfix:before,.clearfix:after {content: "";display: table;}.clearfix:after {clear: both;}