html5 css reset (CSS重置)

body {
    font-size: 14px;
    //依据公司需求
    font-family: 'Hiragino Sans GB','microsoft yahei';
   
}

body,dd,dl,h1,h2,h3,h4,h5,h6,ol,p,ul {
    margin: 0
}

ol,ul {
    list-style: none;
    padding: 0
}

img {
    padding: 0;
    margin: 0;
    border: 0
}

a {
    color: inherit;
    text-decoration: none
}

推荐两篇 张鑫旭老师的文章CSS reset的重新审视 – 避免样式重置

HTML5 css reset

你可能感兴趣的:(css)