どのブラウザーでも同じデザインで表示されるように、CSSをリセットします。
最低これだけはセットする基本のリセットcss / Reset css
/* CSS Document */ html,body,h1,h2,h3,p,ul,li,dl,dt,dd,table,th,td,header,nav,main,aside,section,footer,div { margin:0; padding:0; font-family:"游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN",Meiryo, sans-serif; font-weight: 500; /*※windowsでは細く表示される為*/ line-height:1.0; } ul,ol{ /*※番号を使用する場合はolは記述しない*/ list-style:none; } table { border-collapse: collapse; border-spacing: 0; } a{ text-decoration:none; } img{ vertical-align:bottom; border:none; }
※header/nav/main/aside/footer/divは記述しない場合もある
コメント