Mozilla Firefox OK - IE Screw Up

Discussion in 'Programming' started by dark0circles, Dec 20, 2006.

  1. #1
    Have you guys web sites appear diff. on diff. browser?
     
    dark0circles, Dec 20, 2006 IP
  2. smallbuzz

    smallbuzz Peon

    Messages:
    125
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    All websites look the same on all browsers. Did you not know this?
     
    smallbuzz, Dec 20, 2006 IP
  3. phree_radical

    phree_radical Peon

    Messages:
    563
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #3
    phree_radical, Dec 20, 2006 IP
  4. dark0circles

    dark0circles Peon

    Messages:
    660
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks for the thread. I'll try to figure out.:eek:

    (my right zone tends to appear under the content if view in IE while everything alrights in Mozilla..)
     
    dark0circles, Dec 20, 2006 IP
  5. phree_radical

    phree_radical Peon

    Messages:
    563
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Sounds like the difference in sizes (the browsers interpret css size attributes differently) is making them too wide in IE to fit into the parent div, causing something to fall down. You could set a different size just for IE like this:

    #mything {
      width: 400px;
      //width: 350px;
    }
    Code (markup):
    It's a work-around and I believe not the most advisable one. Standards-compliant browsers will ignore the second one, while IE will accept it and replace the width with 350px. Make sense?

    More info about how IE6 misinterprets the box model:
     
    phree_radical, Dec 20, 2006 IP