Results 1 to 9 of 9

Thread: When will internet explorer catch up with firefox?

  1. #1
    Capo di tutti capi boneless's Avatar
    Join Date
    Oct 2005
    Location
    Rotterdam
    Posts
    3,734

    Default When will internet explorer catch up with firefox?

    prolly never.

    designing isnt my thing really but every now and then i try myself to make a design in xhtml and css. So far its a hopeless thing, whatever works in firefox doesnt work in ie8 (the one i use for testing). Firefox seems to be the more complete browser that follows css a bit more to my liking.

    What do you guys do to bypass ie problems?

    for example im making rounded buttons in firefox thru css, in ie they show as plain squares. bloody nightmare...

    back to work again...

    [/rant]
    icq 14857306
    skype dabone2

  2. #2
    Jack-of-all-trades JACOBKELL's Avatar
    Join Date
    Dec 2006
    Location
    In motion
    Posts
    4,565

    Default

    Yes i can make any css without problem in firefox but no in IE it's almost impossible.
    *************************Unstoppable innovation machine***********

  3. #3

    Default

    Our css guy can make css/html backward compatible to IE6, so no issues here

    In awstats I noticed IE usage decreased to under 20%, FF, Opera and Chrome make 79%...


    dlXer - Adult design, coding and hosting. ST/STP, TradePulse

  4. #4
    Capo di tutti capi boneless's Avatar
    Join Date
    Oct 2005
    Location
    Rotterdam
    Posts
    3,734

    Default

    Quote Originally Posted by MMarko View Post
    Our css guy can make css/html backward compatible to IE6, so no issues here

    In awstats I noticed IE usage decreased to under 20%, FF, Opera and Chrome make 79%...
    IE 8 42.73% 54,662
    IE 7 16.02% 20,496
    FireFox 3.5 8.8% 11,256
    IE 6 8.21% 10,508
    FireFox 3.6 7.28% 9,320
    Safari 5 5.76% 7,376
    Chrome 5 5.19% 6,639
    Opera 1.54% 1,970
    Safari 1.22% 1,572
    FireFox 3.0 0.83% 1,071
    FireFox other 0.72% 923
    Playstation 0.65% 842
    AOL 0.53% 686
    Google Chrome 0.15% 198
    Unknown/other 0.09% 122
    Chrome 6 0.08% 109
    Avant Browser 0.06% 89
    SeaMonkey 0.02% 38
    Minefield 0.02% 32
    icq 14857306
    skype dabone2

  5. #5
    I need help
    Join Date
    Jul 2010
    Posts
    41

    Default

    Ugh IE is a nightmare for sure. Every designer's bane.

    IE6 is the real monster, that just interprets shit differently for some reason. I always have issues with widths, margins ,etc. anything with sizes assigned. using absolute an drelative positioning will behave strangely as well.

    The best route ive found is to do my best fixing everything to work in all browsers, which is a debugging process, and not fun, btu necessary. You load it again and again in different browsers while tweaking code.

    If you hit a wall then you can use conditional tags in your header.

    Code:
    <!--[if IE 6]>
    <link href="ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
    This tells the site if the browser is on ie6, load that css file. put it after the main one, and put in modified code for the parts you need tweaked to bitch ie6 into behaving

    That tag works for multiple browser types, search it in google.

    Other than that, we're all SOL. IE6 though is the most horrid one. 8 and 7 generally behave all right enough.

  6. #6
    Jack-of-all-trades JACOBKELL's Avatar
    Join Date
    Dec 2006
    Location
    In motion
    Posts
    4,565

    Default

    Quote Originally Posted by precon View Post
    Ugh IE is a nightmare for sure. Every designer's bane.

    IE6 is the real monster, that just interprets shit differently for some reason. I always have issues with widths, margins ,etc. anything with sizes assigned. using absolute an drelative positioning will behave strangely as well.

    The best route ive found is to do my best fixing everything to work in all browsers, which is a debugging process, and not fun, btu necessary. You load it again and again in different browsers while tweaking code.

    If you hit a wall then you can use conditional tags in your header.

    Code:
    <!--[if IE 6]>
    <link href="ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
    This tells the site if the browser is on ie6, load that css file. put it after the main one, and put in modified code for the parts you need tweaked to bitch ie6 into behaving

    That tag works for multiple browser types, search it in google.

    Other than that, we're all SOL. IE6 though is the most horrid one. 8 and 7 generally behave all right enough.
    I remember when i had alignment totally screwed in IE just because i had <div align="center"> instead <center>
    *************************Unstoppable innovation machine***********

  7. #7
    Jack-of-all-trades JACOBKELL's Avatar
    Join Date
    Dec 2006
    Location
    In motion
    Posts
    4,565

    Default

    Quote Originally Posted by boneless View Post
    IE 8 42.73% 54,662
    IE 7 16.02% 20,496
    FireFox 3.5 8.8% 11,256
    IE 6 8.21% 10,508
    FireFox 3.6 7.28% 9,320
    Safari 5 5.76% 7,376
    Chrome 5 5.19% 6,639
    Opera 1.54% 1,970
    Safari 1.22% 1,572
    FireFox 3.0 0.83% 1,071
    FireFox other 0.72% 923
    Playstation 0.65% 842
    AOL 0.53% 686
    Google Chrome 0.15% 198
    Unknown/other 0.09% 122
    Chrome 6 0.08% 109
    Avant Browser 0.06% 89
    SeaMonkey 0.02% 38
    Minefield 0.02% 32
    Yep my stats looks similar.That is why i find hard to believe how some sites have more visitors from ff then ie.Bu it's possible.
    *************************Unstoppable innovation machine***********

  8. #8
    Serious Contributor
    Join Date
    Nov 2005
    Location
    ,-._|\ ................... ............ / Aus \ ................. ............ \_,---./ ............
    Posts
    1,105

    Default

    I've only really gotten in tune fully with CSS in the past 2 years. And i've spent a lot of time debugging to get to the level i'm at now which I wouldn't even call super advanced. But yeah i'm always testing in IE and FF. Usually I don't have to use any conditional elements, but when I do I tend to just use the asterisk * hack for IE in my single css file. I usually use that for diff margins/padding in IE since they tend to display a few pixels differently for me from IE and other browers. But yeah man CSS is great with its flexibility it allows compared to tables but I can feel your pain with the issues you're having, and I think majority of webmasters go through the same with css based sites. Just trial and error for me and you become much quicker with experience.

  9. #9
    Who does #2 work for? AmateurFlix's Avatar
    Join Date
    Oct 2005
    Posts
    13,922

    Default

    I consider IE to be greatly advanced over FF. Many CSS specifications are not very intuitive at all, and FF tends to follow that lack of intuitiveness, while IE usually tends to produce something which at least looks as intended.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •