リセットCSS

私が使用しているリセットCSS

使用している要素のみ記述していく

@charset "utf-8";
/* CSS Document */

/* reset */ /* 使用している要素のみを記述。引き忘れ注意! */
html, body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, th, td , img {
margin: 0;
padding: 0;
line-height:1.0;
font-family:
"Hiragino Kaku Gothic ProN",
Meiryo,
sans-serif;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
ul, ol{
list-style: none;
}
a {
text-decoration: none;
}
*, *:before, *:after {
box-sizing: border-box;
}
img {
vertical-align: bottom;
border: 0;
}

/* その他 */

.clear{
 clear:both;
}
.clearfix:after {
content: "";
height: 0;
display: block;
clear: both;
}

/* body */
/* bodyに関しての指定 backgroundやcolor*/

/* layout */
/* layoutに関しての指定 width・background・margin・paddingなど*/

/* #header */
/* #header 上から順に記載していく*/