私のreset.css

3667 ワード

*{
    box-sizing: border-box;
}
*::before{
    box-sizing: border-box;
}
*::after{
    box-sizing: border-box;
}
body,dl,dt,dd,ul,li,h1,h2,h3,h4,input,form,a,p,textarea,button{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
}

ol,ul,li{
    list-style: none;
}
.clearfix::after{
    content: "";
    display: block;
    clear: both;
  }
/*  margin  */
.noCollapse::before{
    content: '';
    display: table;
}
.noCollapse::after{
    content: '';
    display: table;
}