Jul 6, 2008

Firefox V/s Internet Explorer For Web Design

Free Web Hosting, No Ads > CONTRIBUTE > The Internet > Web Design
Pages: 1, 2

free web hosting

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*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. firefox v/s iexplorer - 27.65 hr back.
Similar Topics

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

  1. Swanson Internet Forum Host Error
    Ive bought a php script, and im feeling ripped off (4)
  2. Firefox Explodes When I Put Height To 100%
    What's up with that? (3)
    CODE <table width="100%" height="100%" cellspacing="0"
    cellpadding="0"><tr><td><table width="100%"
    background="/images/bg.gif" cellspacing=0><tr><td width="100%
    BACKGROUND="/images/bg.gif"></td><td valign="right"><img
    src="/images/greyhound.gif"></td></tr></table> <table
    height="100%" width="100%" cellspacing=0><tr height="100%"
    width="100%" bgcolor="....
  3. Help! Firefox And Ie Not Playing Nice!
    Div overflow problems! (8)
    I recently made a website for a friend. http://www.TheQuotes.co.nr Now, here is the problem. It
    seems if you load it with FF the middle section background will not strech. But if you use IE it
    will. Does anyone know why this is happening or how to fix it? Here is the code I have in the
    index file. CODE <head> <meta http-equiv="Content-Type"
    content="text/html; charset=iso-8859-1" /> <title>The Quotes</title>
    <style type="text/css"> a{ color: #ffffff; size:-1;} </style>
    </head&....
  4. Firefox Extensions Dream Package #1: Web Design Extensions
    add-ons and plug ins (26)
    Well since Fire fox got updated and I have got the universal package browser for web design I
    thought why not share it to those who do not know about these tools so here we go. I will explain
    each tool and what it is used for and then give you the simple instructions on where to get it and
    where to find it. First download Firefox http://www.mozilla.com/products/download.h...&lang=en-US
    then install it and your set from there, Now for the plug-ins and add-ons. ColorZilla What
    this program does is that once you select it a small ink dropper icon will show up and ....
  5. Want A Internet Radio Station For Free
    (12)
    Hey, I know a website that lets you broadcast free radio station.. I've been using it for 2
    years and its awesome.. iT's www.flatcast.com but when you type url into the browser you have to
    put www hope you enjoy it.......
  6. 30 Gb Mail Account For Free On Internet
    (19)
    In Order To Get 30Gb Mail Account Simply Click The Links Given Below And Register On The That
    Website For 30GB Mail Account.. Click Here: http://www.congloi.5gigs.com/30gigs/ Mirror Or Same
    Thing With Different Link: http://www.30gigs.com/accept/140083/ebdde3...941de344441d08c Well If U
    Like My This Inventory Please Rate It Also Do Tell Me Your Thoughts About This Thanx......
  7. Need Help Wite Viewing Site In Ie
    Navigation fails to work in internet exploder (5)
    Well guys most of the time I like to at least try to figure stuff out my self however I have been
    fighting with this navigation problem for a long time and its really starting to bug me. The
    problem is that I got it working fine... or so I thought because I was using firefox however when I
    tested it in IE it failed to work at all. Maybe you guys could be some help. Place where I
    originally got the Navigation: http://www.alistapart.com/articles/horizdropdowns/ However Im using
    the Javascript found here: http://www.nickrigby.com/article/11/drop-d...ntal-style-pt-2 ....
  8. The Biggest Public Download In Internet History
    (4)
    since the recent release of microsoft's windows vista beta 2, microsoft has been facing great
    bandwidth problems. because the beta release has been the most downloaded thing in internet history.
    microsoft associates have said they knew it was gonna happen, but they did not know it was going to
    be this bad. rumors say that some servers have even broken down, and a lot have been maxed out. i
    don't see what the big fus is about vista. its another failing operating system that has copied
    features from mac os x and linux and just has changed the names of the technolo....
  9. Future Of Internet In 2016 And Beyond
    (8)
    The biggest shift over the next ten years will be one of attitude, as our mindset of "going online"
    is replaced by one of "being online". This change has already started, as telephones and televisions
    become more integrated with the Net, and connectivity will grow to include everything from your
    morning alarm clock to the book you read before falling asleep at night. The "Internet" will no
    longer be a destination, but the essential glue that holds our world together. Along with a change
    of mindset will be a generational shift. By the year 2016, no one under the age of f....
  10. Abc Website-building
    how to have a website on the internet? (1)
    Hi all, wish u help me do well in ur forum. i wanna talk about websites ........how can u have a
    website first u must know some words like:DOMAIN NAME,HOSTING adomain name is ur name,ur
    company.com,.net,.org,etc this is name visitors will type to access ur page. HOSTING is a server
    where ur website data and files are placed its given by hosting companies like
    www.trap17.com......... i will continue ABC ...website
    in progress thanks ....
  11. Firefox And Ie Preview
    (7)
    While I was making my web-site in front page, I've noticed that when preview it Internet
    Explorer it often looks very different from Mozzila's Firefox. I've got worried that my
    web-site might look good in Firefox but simultaneously show up messed up in Internet Explorer web
    browser. So. now I have to adjust HTML code for both browsers. Are there any suggestions of how to
    properly use html code to be able to view web pages in both web browsers the same? Maybe I need to
    use some special tags or something?....
  12. What Is So Great About Firefox?
    is IE going down the tubes? (27)
    What is so great about Firefox? The last I knew 98% of people were using Internet Explorer, so as a
    web designer, I really only had to worry about Internet Explorer displaying my website correctly.
    I've read that Firefox now makes up about 20% of the browser market. These two browsers display
    web pages completely different and it's a bit frustrating to say the least! Why are people
    suddenly using Firefox and not Internet Explorer? Did you switch from Internet Explorer to Firefox
    and if so why?....
  13. Internet Radio Station
    help me to make a site (6)
    is there anyone that would liketo help me build a site for a internet radio station? Topic title:
    "Help Me, make a site" is not a good title and you are not abiding by posting rules. Changed title. ....
  14. Frameset Doesn't Work In Internet Explorer?
    How to make it work (1)
    I used to use frameset in my page and I didn't know it didnt load in Internet Explorer till
    recently a friend of mine told me that (I am using Mozilla Firefox). and I searched the web for an
    answer, some say you need to fix the width of the frame and some say it's because of the
    pop-ups. I tried all methods but none worked. So I have to resolve to iframe now. Nevertheless I
    still like frameset because it's neater. Does anyone know how to make it work? There must be a
    way since other websites that use frameset can work (like runescape.com) Or does it only not....
  15. Best Templates On The Internet?
    A Place to find the best templates around! (4)
    Hi. I am a fairly novice web site creator but i like my site to look good. At the moment it looks
    'ok' but i want to give it that 'wow' look. If anyone has some really good templates
    or knows were i could get them from for free please post here. I know there are threads liek this
    already but this is one so people can post a link to all the web template sites so you dont have to
    look through lots to find the perfect one. If you take a look at my site ( FRE3! ) then you can
    see i have only a fairly simple template. I am hoping to keep the simple factor ....

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

Searching Video's for firefox, v, s, internet, explorer, web, design
advertisement



Firefox V/s Internet Explorer For Web Design



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE