Posts: 34
Name: Dima
Location: Toronto, Canada
|
I could not find what exactly looks different in IE and FF and not sure what do u have in Safari 3 but before u start any page I would advice you to set proper doctype, I use transitional but strict too much headache.
Also in you css in every page at the very top insert something like this
body, div, span, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, td, iframe {
margin: 0px;
padding: 0px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing:border-box;
font-style: normal;
font-weight: normal;
}
it would make your life easier 100% when u create cross browser pages.
-moz-box-sizing: border-box; makes FF works the way IE does
-webkit-box-sizing: border-box; this line for Safari
Good Luck.
|