try adding this to your stylesheet:
see, some browsers, have differeing values for padding, margins and other things on certain items.
these differences can sometimes make pages render differently cross browser, with sometimes subtle and frustrating little bugs.
once you've reset all these css values, you'll have to build them for each item.
for example, a h1 will have no padding and margins, so you'll ahve to add them back in.
have fun.
HTML Code:
/* GLOBAL RESET */ html,body,p,div,img,h1,h2,h3,h4,li,ul,ol,dl,dd,dt,form,table,th,td,tr { margin:0px; padding:0px; border:0px; border-collapse:separate; border-spacing:0px; line-height:1.3ems }
these differences can sometimes make pages render differently cross browser, with sometimes subtle and frustrating little bugs.
once you've reset all these css values, you'll have to build them for each item.
for example, a h1 will have no padding and margins, so you'll ahve to add them back in.
HTML Code:
h1 { padding:3px margin:3px }
Comment