Site-specific: Firefox and IE CSS features

I am trying to learn CSS. I went to great lengths to get it right. All my pages are checked and they look correct in Firefox and mostly correct in Chrome. IE is everywhere, however. In relation to Firefox in IE (in order of importance), the following is wrong:

  1. the main body box is located below where the left boxes end
  2. the top right dropdown (hover over "Settings") is completely disabled in Weeds (in Chrome it is disabled but in a different way)
  3. It assumes the Recipes tab has no visible bottom border
  4. the search button is tilted relative to the search box
  5. logged out version: top-right login items are oblique

Sign in , log out , the CSS ,

Links, functionality, etc. Not guaranteed to work on these pages. These are just static shots to show the layout.

Can anyone point me in the right direction for what I am doing wrong?

+1


source to share


3 answers


You need to Reset your CSS (Dean, above recommends Eric Meyer Reset CSS). I prefer Yui Reset CSS (I really like their own Reset / Fonts / Grids CSS). As part of this, you must also use standards mode.



Finally, you need to know that some things will be different in browsers. Therefore, if you come across this situation, it either works around it or lives with it.

+4


source


Which version of IE are you using? It looks like most of your problems can be caused by IE Box Model Error.



+1


source


I never start a new website design in css without Eric Meyer's first Reset CSS .

It resets all differences across all browsers, so you have a level playing field to start with. From there, everything should be the same across all browsers.

+1


source







All Articles