cssファイルの先頭に注意すべき点(補足)

3282 ワード

cssファイルの先頭に注意すべき点(補足)


一部のラベルはデフォルトで余白があります。まず、ラベルの内外の余白をすべてクリアします。

    a, address, b, big, blockquote, body, center, cite, code, dd, del, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, label, legend, li, ol, p, pre, small, span, strong, u, ul, var{
    padding: 0px;
    margin: 0px;
}
/*            ,              ,        0,     。*/
*{
    padding: 0px;
    margin: 0px;
}

一般的にはハイパーリンクの下線は必要ありませんので、aの下線をすべて外し、色を黒に設定します。

a{
    text-decoration: none;
    color: #000000;
}

リストの左のデフォルトは原点がありますが、一般的には必要ありませんので、先に消してもいいです。

ul{
    list-style: none;
}