internet explorer - CSS padding issues in IE and Chrome -
please check out following http://healthfacilitiesgroup.com/pm/phaseinfo.php in ie , in chrome. want site 8.5in wide 1in "margin" on either side (meaning 6.5in wide paragraphs etc.). thought way div 8.5in wide , 1in padding. that's how css set reason ie , chrome handle totally differently. i'm less novice html, anything.
you don't have doctype, site rendering in quirks mode. quirks mode + ie = hopeless.
you can escape quirks mode , achieve consistency adding first line:
<!doctype html>
that's html5 doctype, , trigger standards mode.
Comments
Post a Comment