目前比较全的CSS reset重设方法总结

2020-05-01 09:36:38易采站长站整理

    border-collapse: collapse;    
    border-spacing: 0;    
}  

五.Shaun Inman’s Global Reset

CSS Code复制内容到剪贴板

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, table, th, td, embed, object {   
    padding: 0;   
    margin: 0;    
}   
table {   
    border-collapse: collapse;   
    border-spacing: 0;   
}   
    fieldset, img, abbr {   
    border: 0;   
}   
address, caption, cite, code, dfn, em,    
h1, h2, h3, h4, h5, h6, strong, th, var {   
    font-weight: normal;   
    font-style: normal;   
}   
ul {   
    list-style: none;   
}   
caption, th {   
    text-align: left;   
}   
h1, h2, h3, h4, h5, h6 {   
    font-size: 1.0em;   
}   
q:before, q:after {   
    content: ”;   
}   
a, ins {   
    text-decoration: none;   
}  

六.Yahoo(YUI) CSS Reset:

CSS Code复制内容到剪贴板

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,    
form,fieldset,input,textarea,p,blockquote,th,td {    
    padding: 0;    
    margin: 0;    
}    
table {    
    border-collapse: collapse;    
    border-spacing: 0;    
}    
fieldset,img {    
    border: 0;    
}    
address,caption,cite,code,dfn,em,strong,th,var {    
    font-weight: normal;    
    font-style: normal;    
}    
ol,ul {    
    list-style: none;