Add to Google

Firefox V/s Internet Explorer For Web Design

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #14) by gogoily on Dec 6 2007, 04:24 AM. (Line Breaks Removed)
You should consider the CSS display differences between FF and IE when you design webpage
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > CONTRIBUTE > The Internet > Web Design

Firefox V/s Internet Explorer For Web Design

saqib431
hi friends.
I have noticed one thing that when we surf web with columns on it we see that internet explorer shows the site in a nice way.
But when we surf the same site with firefox, it destroys the whole structure of site. and shows the columns very clearly and boldly.
Can any body tell me what's wrong with firefox?

Reply

9block
I believe it has to do with the difference the browsers read and interpret CSS. CSS is a language used to modify the apperance of web elements such as fonts, paragraphs, tables, ect. There is a problem with the way FF and IE read the "padding" command. Now depending what browser the CSS coder used... the results may vary with overlap or thinker borders/gaps.

I first found this out when I was working on 9block.789mb.com - if you view the site in Ie and FF, it looks different. I coded it in FF tho, so its optimized for FF (I never finished the site, or plan on it.). With a little research on google, i've found they have called this the IE Box Model Problem... and it is a mistake on IE's part - not FF's.

QUOTE
According to the W3C, an assigned 'width' (and 'height') of a box refers to the 'content area' of a box only. The padding, borders, and margins are then added to this value to arrive at the total box width. If the 'width' property is omitted, the total box width is the same as the 'content area' of the surrounding container element.

All well and good. Unfortunately, all CSS enabled versions of IE before IE6/strict use a different box model. In that model, the padding and borders are counted as part of any assigned 'width' or 'height'. In the absence of borders and padding, the two models agree. However, if a box has an assigned "width', and if borders and/or padding are added, the standard box model causes the overall box width (between the outer border edges) to increase, while in IE's model the 'content area' gets squeezed by the same amount. This is a major problem for proper page layout.


You can read more here: http://css-discuss.incutio.com/?page=BoxModelHack

 

 

 


Reply

stevethedog
I've been a firefox man for years but I am starting to come around to IE7 as I have more and more problems with firefox's compatibility.

Reply

jlhaslip
The Box Model is interpreted differently on the two Browsers, as already pointed out. And IE7 is better at rendering to the W3C Standards as pointed out, also. In addition, these Browsers also handle Table based Layout differently, too, And Floats, Margins, etc.
Firefox is nearer to being a Compliant Browser, so I recommend coding in Firefox and hacking for IE6/7. Use the IE Conditionals to alter your CSS file for them. The IE-only CSS file needs to contain overrides for the 'broken' CSS, not all the CSS.

Opera and Konquerer are the only Browsers which meets the Standards completely. (not sure about Safari) There is a site which demonstrates W3C Compliance using a CSS-based image.

search:Acid 2 test

Apparently Firefox 3 Alpha meets the Standards, too, but it isn't ready for a public release yet, although there is a Topic on the Trap17 which offers a download for testing. Search the Trap for the posting by Buffalohelp.

Reply

odomike
I think its most likely because of the mozilla engine. Thats y firefox is behaving that way. It once messed up my site. When I view the site on internet explorer, everything will be fine but once I switch to firefox, it distorts a lot of the cells and tables in there.

Well,I had to find a work-around that problem and I was finally able to correct it. I would advice you to use both internet explorer and firefox when designing your website because they use different engines n like you all know, not every web surfer uses internet explorer. It wont be like when someone, somewhere views your website, the who0le thing will be in shambles.

For me, I have Internet Explorer, Mozilla Firefox, Netscape 9.0b and Opera all installed in my computer. This is because I use all ofthem to troubleshoot my websites in case of errors.

Reply

fffanatics
IE and Firefox both interpret CSS in different ways. Firefox tends to follow the standards better than IE but as a web designer, i make sure my site looks best in IE since it still is the most used browser. However, there are ways to make your website look good in both of them and all the other browsers. To do this, you just make sure you test your site on all the browsers you have and make sure that you design it in such a manner that you are able to find work-arounds for what the browsers interpret incorrectly.

Reply

Soviet
When i m doing webs im doing it for Firefox.. IE is bad for me. Im using Firefox many years smile.gif

Reply

odomike
QUOTE
I've been a firefox man for years but I am starting to come around to IE7 as I have more and more problems with firefox's compatibility.


Ok wel;, I aint having any problems whatsoever with firefox n the rest of 'em. My problem here is internet explorer which keeps on distorting my web pages n it aint displaying the tables, cells, rows n columns in a proper manner.

Reply

arnz
I would try to make the site as compatible to most browsers as possible. Of course they are some aspects which may seem only workable to the Windows operating system, considering the Microsoft monopoly, but it seems many WYSIWYG editors do try to include test functions to many multiple browsers.

Reply

Codemaster Snake
I think for serious web designing one should consider testing the final product on every possible platform. THerefore one should design keeping n mind the framework of every popular browser. Wether it's IE or FF. You should test it on every explorer. You can never be sure that your site will alwys be viewed on IE or FF. every one can browse your site with his fav. explorer.

P.S I know some geeks in my circle who use lynx for browsing wink.gif And I must tell you you can extract many crucial parts of a site with it wink.gif

Reply

Latest Entries

gogoily
You should consider the CSS display differences between FF and IE when you design webpage

Reply

Sprnknwn
I know it sucks, but a good designer should try to make their design looks good and with the less differences possible in all browsers. It sucks because if you think about it, it shouldn't be work of the webmaster, but of the browsers that should unify their criteria. But, as they're competitors, I suppose this won't happen and we'll have to be doing tricks and fixes forever just to make websites that look decent in both (and others like Opera, Konqueror, Safari...). People used to make websites thinking in how IE would read them but nowadays fortunately the thing is changing and I admit that I give priority to Firefox.

Reply

mahirharoon
best way is to make firefox code and ie code then with js make them compactible by using the code :
CODE
if(navigator.userAgent.indexOf("Firefox") != -1){
var nxturl = "browserfx.html";
}

else if (navigator.appVersion.indexOf("MSIE") != -1){
var nxturl = "browserie.html";
}

else {
var nxturl = "browsidmi.html";
}

document.location = nxturl;



browserie.html is ie compactible page
browserfx .htmlis firefox compactible page
browseridmi.html is for the rest

Notice from rvalkass:

Added CODE tags.

Reply

Codemaster Snake
Sure I'll check it out!

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

Pages: 1, 2
Recent Queries:-
  1. how to make ur website compatible in both internet explorer and fire fox - 11.62 hr back. (1)
  2. mozilla v/s internet explorer - 743.21 hr back. (1)
  3. web design height in firefox and internet explorer - 1296.76 hr back. (1)
  4. valign problem firefox ie - 1318.22 hr back. (1)
  5. firefox v/s internet explorer changes - 1420.99 hr back. (1)
  6. firefox v/s ie6 changes - 1421.34 hr back. (1)
  7. firefox interprets my coding differently to internet explorer - 1438.70 hr back. (1)
  8. vista flatcast compatibel - 1556.36 hr back. (1)
  9. changing box model ie - 2117.24 hr back. (1)
Similar Topics

Keywords : firefox, v, s, internet, explorer, web, design

  1. Internet Censorship In Australia
    (6)
  2. My Laurimar Gardens Website Design
    check out my website design and tell me what u think (8)
    Hey guys I designed this website for a brief at uni.. the brief was to design a website which gives
    a feel that matches the topic The topic/subject I was given is called Laurimar Gardens. It's a
    wedding reception. This was for 2d so its only the interface design not the whole thing. so the nav
    won't link anywhere. but scroll over most of the things you see cause some are flash files and
    are animated. This took me awhile.. it wasn't my first idea but i gradually made it my main one
    .. i was pretty frustrated at the time with my old design so i changed the wh....
  3. Freelance Logo Design
    The how and where to make money at it (0)
    I enjoy doing logos, although my experience using Adobe Illustrator needs improvement.. I work on
    projects posted on crowdspring Ive been very happy with their program and would like to invite
    others to try it, most of all id like to discuss to making of logos, where to find tips on how to
    make them better. Im sure with enough imput every one can make a little money at it....
  4. How To Design A Contact Form In Flex Part Duex Part 2
    (0)
    How To Design A Contact Form In Flex Part Duex Part 2 In the previous tutorials we had populated
    our combo boxes with the use of XML by using the tag in order to add data to our combo box. Also
    we had to identify that XML list also in the combo box itself like so: CODE
                                          In which our dataProvider would check to see what
    states were added in XML List and display them and so now we are going to do the ActionScript
    version of this by using Bindable Array's in order for the combo boxes to display states and
    credit car....
  5. Fla. Teen Commits Suicide With Live Web Audience
    A new low for the internet (16)
    QUOTE MIAMI – A college student committed suicide by taking a drug overdose in front of a
    live webcam as some computer users egged him on, others tried to talk him out of it, and another
    messaged OMG in horror when it became clear it was no joke. Some watchers contacted the Web site to
    notify police, but by the time officers entered Abraham Biggs' home — a scene also
    captured on the Internet — it was too late. Biggs, a 19-year-old Broward College student
    who suffered from what his family said was bipolar disorder, or manic depression, lay de....
  6. Introducing Myself - Database Programmer Learning Web Design
    (5)
    Hi - I just wanted to post something here to introduce myself. I do paid work as a freelancer
    (translator from various languages to English, database programmer, graphic designer), as well as
    unpaid work as a hobbyist (using executable specification languages such as Maude, and also
    high-performance vector-based or column-oriented database languages). I think it's finally
    time for me to set up an on-line presence for myself, and I figure I need the flexibility of a CMS
    rather than just a blog. After researching several CMSs I'm really excited about Drupal b....
  7. Free Internet Tv
    (2)
    Now there's a great program you can use to watch TV free on the internet from all over the
    world. http://jlc-software.com/index.php?page=internet_tv.html This is really useful if you want
    to keep up on news and happenings in another country - or a great way to polish your
    foreign-language skills by watching shows in another language.....
  8. Could You Live Without The Internet?
    (14)
    Without brining the work industry into this, could you live without the internet? I know I
    couldn't. The internet is one of my top means of entertainment. I don't think I could live
    without forums. Also, sitting back and looking at a great website you made, now that's fun. I
    know some really artsie people who don't use any electronics these days, but I know if you are
    replying your not. Anyways, do you think you could live without it?....
  9. How To Design A Contact Form In Flex Part Duex Part 1
    (1)
    How to Design a Contact Form in Flex Part Duex Part 1 Well if you had read my first three
    tutorials on how to design a contact form, you learn some basics on MXML and of course design a
    contact form. Yeah I promise a part 4 to that series, that is why I renamed this one to Part Duex,
    since the form is completely different, and using a different way to populate my combo boxes with
    data. Although, I might have found something to get the php going for this, but I save that for
    another time. Now because I am using the flex editor to design my contact form, I will be re....
  10. Disappearing Files? Explorer Reporting Incorrect Free Disk Space?
    (4)
    I hate to have to ask, but why is Windows Explorer being dumb? Just the other night I copied 12GB
    worth of video files from my brother (Futurama episodes). It happened to be my last 12GB, leaving my
    500GB external hard drive with less than 300MB of free space. I turned the hard drive off, packed
    up, and left for home. Booting up the same hard drive to search for its contents, I was surprised
    to have about 13GB of free disk space left on the hard drive. I figured that maybe my brother
    actually said that he was going to copy those episodes but forgot to, so I did my usua....
  11. Web Design Help
    I need help designing my website homepage if possible? (5)
    Hey Trap17 Users! /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif"
    /> I'd like to get some help from experienced Trap members, to help me get my homepage of
    Central-Gaming design page up. /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
    alt="smile.gif" /> If possible, I'd like to have the following used: HTML PHP Maybe some
    jscript Also, what I'm trying to do is create a homepage (A good homepage) for Central-Gaming.
    (My site). /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin....
  12. Using Internet In Mobile Phone
    (10)
    we always use internet in our mobile phone. what do you think is it safe using internet in ur
    mobile. ??....
  13. Windows Xp: Explorer.exe Crashes On Certain Accounts
    (9)
    I share a Windows XP computer with two friends, and we each have our own User Account on the
    computer. Recently whenever my friends use the PC, they begin to have problems with it. For no
    reason whatsoever, Windows Explorer will crash and close all the current folders that are open. I
    went onto their User Accounts to see for myself (with permission, of course), and found that
    Explorer would crash any time I right-clicked a File, and would also crash on occasion if I clicked
    "File" on the Folder Window's Menu Bar with a file selected. It also happened on rare occasion....
  14. Firefox 3 Sucks - Time For Another Browser
    (78)
    No seriously, I've been using Firefox since 0.x releases. I loved it. Every release, despite
    having no huge features, was a great update. Version 3, however, totally messes everything up. Its
    default interface is ugly. And no Home button, really ??? (ps. I kno i can drag it back from the
    bookmarks toolbar but still, its stupid). The address bar search thing. I liked the concept, but I
    am so used to the old way, this actually distracts me, I don't want to search my history
    everytime I type a new address. Plus the slide out is huge now making the whole thing feel t....
  15. What Is 7zip
    I found a program on the internet called 7zip i want to know what it i (5)
    Hey someone please tell me what 7zip is because i found it on the internet and i want to know what
    it is....
  16. Looking For Program That Will Help With Web Design
    (10)
    im looking for a program that can help me with web design maybe templates and such. i don't
    like adobe photoshop because its big and the steep learning curve can anyone help me? ....
  17. What Program Do You Use To Design Your Web?
    Frontpage, Dreamweaver, a good text editor? (103)
    I personaly choose frontpage because its easy to use but.....I use dreamweaver for PHP.....
  18. Webdesign Frequently Askd Questions
    is it posible to design a sercheingin in your website. (12)
    what i wanna no is is it posible to incorporate a custom search engin into your own website. for a
    while now i have bin wondering is it posible to do this as i would like to try something like this
    out. but i have heard of there being a way to do this in pearl but i no nothing of pearl does
    annyone have anny tips or info on this? (i use frontpage and dreamweaver)....
  19. My First Professional Design: Www.artbyjfrances.com
    (19)
    Well as some of you are aware that I got my first website design gig about 3 months ago and on the
    verge of finishing it after my client decided to stop the designing of the ecommerce section of the
    website. Which is a blessing because outside of setting up a cart and doing coding here and there I
    have no clue about the finance part of ecommerce. To start off I did not choose the hosting site so
    sorry computinghost /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" />,
    second the admin panel is horrible and very limited what you can do as well....
  20. My Thoughts On Why Internet Explorer Is So Popular.
    (17)
    I see little point in the "What browser do you use?" topic except to discuss the pros and cons of
    different browsers. It's obvious that most people will use Internet Explorer because almost all
    computers that are bought for people or sold to them are pre-loaded with Some version of Windows, in
    which the only browser is Microsoft's own, Internet Explorer. And since a big proportion of
    first-time computers users are not so computer savvy and do not become so because they do not really
    need to, they will use what they are given. In the internet Cafe I am typing....
  21. Firefox Greasemonkey - Invision Board Tool For Warning
    IPB warning shortcut (7)
    Greasemonkey is popular for Firefox users in making any webpage to give that a little personal
    touch. I found Greasemonkey extension for IPB for moderating WARN feature. You can have lists of
    commonly used warning messages and have it as pull-down menu style when issuing a warning. Very
    cool! The simple thing about this extension is how easy to modify to fit your needs. This
    extension, called IPB Moderator Reasonator (
    http://www.whiteacid.org/greasemonkey/#ipb...ator_reasonator ), shows only when you are at the
    warning page. Installation is very simple. After the in....
  22. Ie And Firefox Layout Differences
    (12)
    I have had a go at making a website using CSS to dictate the layout (no tables used) and it works
    quite nicely in firefox but when i open it in IE it completely mangles the whole layout. Can
    someone tell me some techniques to prevent this and maybe point me to some helpful pages. Thanks.....
  23. Is It Possible To Destroy The Internet?
    (100)
    I have always wondered if it is impossible to destroy the internet all together... is this even
    possible? If it is possible to destroy the internet what would you have to do? Would you have to
    destroy all the Internet companys like comcast and aol? Or would that not even take care of it?
    Just think, if someone took down the entire internet not only would our lives be boring but it would
    basically destroy the U.S. & other big countries all at once.....
  24. Connect To Internet Using Your Cell Phone
    cell/mobile phone as a modem (22)
    Ever wanted to surf the net but didn't have a modem on your computer? You don't realy need a
    modem to be able to surf the net,you can simply use your cell phone as a modem. HOW? This short
    tutorial will teach how to set your phone as a modem connected to your computer/laptop. Frist is
    frist.You need a cell phone. 2.It has to have gprs and it must be modem enabled 3.You need a means
    of connection from your cell phone to your computer or laptop (inferred,bluetooth or usb cable)
    4.You need a dialup connection 5.You need to know and change your proxey settings ....
  25. Psp Error- Tut On How To Fix
    When you try to use the internet does your psp get an internal error? (32)
    First of all, psp can browse the internet with its simple browser. BUT! What you may not know is
    that there is a bug where when you try to search or use a wireless lan connection (WLAN) the psp may
    say something like: Internal Error (80410A0B) To fix this without any memory loss, take out the
    UMD which is in the psp, and also take out the memory card. Next, go to settings, then system
    settings and click restore settings, the psp may freeze up, but it is not broken, take out the
    batter pack and put it back in, the settings should be restored and all should work. So....
  26. Firefox Problems theme or addon diabled
    (3)
    The usually excellent Firefox is annoying me. When ever I try & install a theme or add-on im
    greeted with: 'Software installation is currently disabled. Click Edit Options to enable it &
    try again' So off I go to edit options, & nowhere is there 'enable software
    installation', ive looked through every menu on firefox & just cant find it. Where am I going
    wrong? Its very annoying.....
  27. Make The Internet Faster 500 Times !
    CFosSpeed (51)
    These programme use a new way to make the internet faster it's made a protocol to make the
    internet faster and it not just make surfing the internet faster but also other prog like torrent
    and file sharring prog and it's perfect if you play online games some guys who had a
    internet caffe told it worked will with him Downlaod Trail Version ....
  28. Css Scrollbars In Firefox?
    (11)
    Ok, I wasn't too sure weither this topic would be better under Internet or Software, so if it is
    in the wrong place please forgive me. I have a question about web browsers. I currently use
    Firefox and I was wondering if there is a way to get FireFox to display CSS Scrollbars, like Opera
    and Internet Explore do. I've currently looked at the FireFox Add-On site and did a few
    searches on Google and I have come up with nothing and I'm getting a strange suspision that
    there is no way to do such a thing. If anyone can help I will be forever grateful. /biggri....
  29. Problem Typing In Firefox 1.0.4
    The Cursor Moves Back Randomly (7)
    I have a problem typing in Fire Fox 1.0.4 sometimes the cursor moves back one space for no reason at
    random. In fact right now its fine and before it was moving back all the time was this just a glitch
    or is there something I need to fix?....
  30. Css Trick: Hide Disabled Internet Explorer Vertical Scrollbar
    (19)
    I'm working on a website and a few minutes ago I got very tired from the Internet Explorer
    vertical scrollbar. This vertical scrollbar is always there, even if the length of the page does not
    require a vertical scrollbar. In this case, Internet Explorer will disable the scrollbar though not
    remove it. In my opinion this would be correct behaviour. The disabled however not hidden scrollbar
    means that a switch between a preview of your website in Mozilla Firefox and MS Internet Explorer
    will lead to an annoying change of the location of your layout. To disable this an....

    1. Looking for firefox, v, s, internet, explorer, web, design






*SIMILAR VIDEOS*
Searching Video's for firefox, v, s, internet, explorer, web, design

*MORE FROM TRAP17.COM*
Similar
Internet Censorship In Australia
My Laurimar Gardens Website Design - check out my website design and tell me what u think
Freelance Logo Design - The how and where to make money at it
How To Design A Contact Form In Flex Part Duex Part 2
Fla. Teen Commits Suicide With Live Web Audience - A new low for the internet
Introducing Myself - Database Programmer Learning Web Design
Free Internet Tv
Could You Live Without The Internet?
How To Design A Contact Form In Flex Part Duex Part 1
Disappearing Files? Explorer Reporting Incorrect Free Disk Space?
Web Design Help - I need help designing my website homepage if possible?
Using Internet In Mobile Phone
Windows Xp: Explorer.exe Crashes On Certain Accounts
Firefox 3 Sucks - Time For Another Browser
What Is 7zip - I found a program on the internet called 7zip i want to know what it i
Looking For Program That Will Help With Web Design
What Program Do You Use To Design Your Web? - Frontpage, Dreamweaver, a good text editor?
Webdesign Frequently Askd Questions - is it posible to design a sercheingin in your website.
My First Professional Design: Www.artbyjfrances.com
My Thoughts On Why Internet Explorer Is So Popular.
Firefox Greasemonkey - Invision Board Tool For Warning - IPB warning shortcut
Ie And Firefox Layout Differences
Is It Possible To Destroy The Internet?
Connect To Internet Using Your Cell Phone - cell/mobile phone as a modem
Psp Error- Tut On How To Fix - When you try to use the internet does your psp get an internal error?
Firefox Problems theme or addon diabled
Make The Internet Faster 500 Times ! - CFosSpeed
Css Scrollbars In Firefox?
Problem Typing In Firefox 1.0.4 - The Cursor Moves Back Randomly
Css Trick: Hide Disabled Internet Explorer Vertical Scrollbar
advertisement



Firefox V/s Internet Explorer For Web Design