HTML 5 Reset Stylesheet

字號:


    這份css reset是在Eric Meyers的 基礎(chǔ)上修改出來的,特別針對HTML5調(diào)整了相應(yīng)標(biāo)簽的初始化樣式。
    代碼如下:
    /*
    html5doctor.com Reset Stylesheet
    v1.4
    2009-07-27
    Author: Richard Clark - http://richclarkdesign.com
    */
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    abbr, address, cite, code,
    del, dfn, em, img, ins, kbd, q, samp,
    small, strong, sub, sup, var,
    b, i,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, dialog, figure, footer, header,
    hgroup, menu, nav, section,
    time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    }
    body {
    line-height:1;
    }
    article, aside, dialog, figure, footer, header,
    hgroup, nav, section {
    display:block;
    }
    nav ul {
    list-style:none;
    }
    blockquote, q {
    quotes:none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content:”;
    content:none;
    }
    a {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    }
    ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
    }
    mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
    }
    del {
    text-decoration: line-through;
    }
    abbr[title], dfn[title] {
    border-bottom:1px dotted #000;
    cursor:help;
    }
    table {
    border-collapse:collapse;
    border-spacing:0;
    }
    hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
    }
    input, select {
    vertical-align:middle;
    }
    更新什么內(nèi)容?
    移除了那些在HTML5中不被贊成使用的標(biāo)簽樣式,例如<acronym><font><big>……添加了HTML5新增標(biāo)簽樣式,移除了默認(rèn)的padding、margin和border,確定指定了那些本應(yīng)該當(dāng)做塊級元素來顯示的元素的display屬性為block。
    使用了屬性選擇器
    為<abbr><dfn>元素添加了屬性選擇器,這是為了在這兩個(gè)元素有title這個(gè)屬性的時(shí)候?yàn)樗麄冎付ㄒ粋€(gè)樣式,這點(diǎn)是從可訪問性的角度考慮的。
    討論
    在錨點(diǎn)上添加outline:0有很嚴(yán)重的可訪問性問題,直接導(dǎo)致鍵盤導(dǎo)航失效。
    ins, mark在沒有設(shè)置字體顏色的時(shí)候不必添加背景顏色。