N 清除样式 global.css || reset.css

适用于全局的样式

body {
  margin: 0;
}

a {
  text-decoration: none;
}

button, input, textarea {
  outline: none;
}

em, i {
  font-style: normal;
}


ul{
  padding: 0;
  margin: 0;
  list-style: none;
}


.border-box {
  box-sizing: border-box;          /* 常规边框padding向内收缩 */
  -moz-box-sizing: border-box;     /* firefox */
  -webkit-box-sizing: border-box;  /* chrome */
  -ms-box-sizing: border-box;      /* IE8以下 */
  -o-box-sizing: border-box;       /* opera */
}

.content-box{
  box-sizing: content-box;          /* 常规解除border-box */
  -moz-box-sizing: content-box;     /* firefox */
  -webkit-box-sizing: content-box;  /* chrome */
  -ms-box-sizing: content-box;      /* IE8以下 */
  -o-box-sizing: content-box;       /* opera */
}

.clearfix::after{ /*清除浮动*/
  content: "";
  display: block;
  clear: both;
}

适用于单页面的通用样式

h1,h2,h3,h4,h5,h6{
  font-weight: normal;
}

div{
  box-sizing: border-box;          /* 常规边框padding向内收缩 */
  -moz-box-sizing: border-box;     /* firefox */
  -webkit-box-sizing: border-box;  /* chrome */
  -ms-box-sizing: border-box;      /* IE8以下 */
  -o-box-sizing: border-box;       /* opera */
}

你可能感兴趣的:(N 清除样式 global.css || reset.css)