记录分享自己经常使用的初始化样式解决方案:
- @charset "utf-8";
- /* 重置样式 */
- html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p,a,form,input,img,testarea{
- margin:0;padding: 0;
- }
- body{
- font-size:16px;
- }
- *{box-sizing: border-box}
- ul, ol {
- list-style:none;
- }
- a{
- text-decoration: none;
- display: block;
- color:inherit;
- }
- a:hover{
- color: #575757
- }
- h1,h2,h3,h4,h5,h6{
- width: 100%;font-weight: normal;
- }
- /* 清除ie图片边框 */
- img{
- border: none;
- }