船长 发表于 2009-01-22 10:47 | 分类:css
1、重置浏览器的默认设置
首先将以下代码加到你的全局css文件中:
1 2 3 4 5 6 7 8 9 10 11 12 | /*1.Reset browser defaults then reset the browser font size*/ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p, blockquote,th,td {margin:0; padding:0; } table { border-collapse:collapse; border-spacing:0; } fieldset,img { border:0; } address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;} ol,ul { list-style:none; } caption,th { text-align:left; } h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:normal; } q:before,q:after { content:“; } abbr,acronym { border:0; } html {font-size: 62.5%;} |