记录分享自己经常使用的初始化样式解决方案:

1. @charset "utf-8";
2.
3. /* 重置样式 */
4. html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p,a,form,input,img,testarea{
5.     margin:0;padding: 0;
6. }
7. body{
8.     font-size:16px;
9.  }
10. *{box-sizing: border-box}
11. ul, ol {
12.     list-style:none;
13. }
14. a{
15.     text-decoration: none;
16.     display: block;
17.     color:inherit;
18. }
19. a:hover{
20.     color: #575757
21. }
22. h1,h2,h3,h4,h5,h6{
23.     width: 100%;font-weight: normal;
24. }
25. /* 清除ie图片边框 */
26. img{
27.     border: none;
28. }

github: https://github.com/hlbj105/reset.css