hosted by liquidweb


Go Back   Web Hosting Talk : Web Hosting Main Forums : Web Design and Content : Different Browsers
Reply

Web Design and Content Subjects include, HTML, graphics, editors, CSS, Flash, graphics creation, placing of ads, ad serv companies, copyright, content and nearly anything else design related. Also talk about businesses that provide design services. If you link to your site, you must post in Web Site Reviews.
Forum Jump

Different Browsers

Reply Post New Thread In Web Design and Content Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 06-10-2004, 06:06 PM
.smw .smw is offline
Newbie
 
Join Date: May 2004
Posts: 24

Different Browsers


Can somebody identify the main factors as to why website layouts may appear to be deformed then to a different browser.

Reply With Quote


Sponsored Links
  #2  
Old 06-10-2004, 06:10 PM
the_pm the_pm is offline
Community Liaison 2.0
 
Join Date: May 2004
Location: Akron/Canton, Ohio (USA)
Posts: 11,117
It's a combination of vagueness in portions of the W3C specs (almost all browsers are modeled after W3C documentation) and poor programming on the part of the developers.

There really isn't much more to be said except practically every inconsistency has been documented at great length somewhere, and Internet Explorer strays the most of any browser by far. But that's easy to explain, their latest release was developed nearly four years ago, so it's quickly becoming a dinosaur.

__________________
Studio1337___̴ı̴̴̡̡̡ ̡͌l̡̡̡ ̡͌l̡*̡̡ ̴̡ı̴̴̡ ̡̡͡|̲̲̲͡͡͡ ̲▫̲͡ ̲̲̲͡͡π̲̲͡͡ ̲̲͡▫̲̲͡͡ ̲|̡̡̡ ̡ ̴̡ı̴̡̡ ̡͌l̡̡̡̡.__Web Design

Reply With Quote
  #3  
Old 06-10-2004, 06:25 PM
Rich2k Rich2k is offline
Web Hosting Master
 
Join Date: May 2002
Location: UK
Posts: 2,994
Quote:
Originally posted by the_pm
It's a combination of vagueness in portions of the W3C specs (almost all browsers are modeled after W3C documentation) and poor programming on the part of the developers.

There really isn't much more to be said except practically every inconsistency has been documented at great length somewhere, and Internet Explorer strays the most of any browser by far. But that's easy to explain, their latest release was developed nearly four years ago, so it's quickly becoming a dinosaur.
Yes except of course that the vast majority of users have IE and so you have to code to work in IE (sometimes at expense of the standards)

Reply With Quote
Sponsored Links
  #4  
Old 06-10-2004, 06:28 PM
the_pm the_pm is offline
Community Liaison 2.0
 
Join Date: May 2004
Location: Akron/Canton, Ohio (USA)
Posts: 11,117
Quote:
Yes except of course that the vast majority of users have IE and so you have to code to work in IE (sometimes at expense of the standards)
Yes and no. You need to test IE just like you test a number of other browsers, but I've not found a case where breaking the "rules" for IE has been necessary. It definitely calls for some technical creativity though!

__________________
Studio1337___̴ı̴̴̡̡̡ ̡͌l̡̡̡ ̡͌l̡*̡̡ ̴̡ı̴̴̡ ̡̡͡|̲̲̲͡͡͡ ̲▫̲͡ ̲̲̲͡͡π̲̲͡͡ ̲̲͡▫̲̲͡͡ ̲|̡̡̡ ̡ ̴̡ı̴̡̡ ̡͌l̡̡̡̡.__Web Design

Reply With Quote
  #5  
Old 06-10-2004, 07:30 PM
Gen-T Gen-T is offline
Disabled
 
Join Date: Jan 2004
Posts: 1,769
.smw, on a related note: a great way to view your site/page in multiple browsers and OS's ....

http://www.browsercam.com

Reply With Quote
  #6  
Old 06-10-2004, 08:27 PM
Marque Marque is offline
Junior Guru
 
Join Date: Feb 2003
Posts: 235
Quote:
Internet Explorer strays the most of any browser by far. But that's easy to explain, their latest release was developed nearly four years ago, so it's quickly becoming a dinosaur. [/B]
Well microsoft has stated that they will not be releasing any new versions of IE or making any updates (other than security patches) until windows longhorn comes out.

In my opinion, one of the best ways to ensure browser compatibility is developing in w3c strict on mozilla. Most of the time, you will have to make very little adjustments for other browsers.

CSS has definitly come along way and is basically where browsers are heading towards nowdays. HTML will soon be a thing of the past as CSS will eventually take its place. So using alot of browser independent CSS under w3c strict, will only help with making sure that your site is displayed properly.

If you want to see just what CSS can do, check out http://www.csszengarden.com


__________________
~Marque

Reply With Quote
  #7  
Old 06-10-2004, 09:09 PM
stripeyteapot stripeyteapot is offline
Hmmm....
 
Join Date: Apr 2003
Location: UK
Posts: 2,341
If you program perfect with no errors, it will look fine in standard browsers such as IE, Mozilla, Netscape, Safari

__________________
ServeYourSite
Web hosting done right
██ Shared, Reseller and Dedicated web hosting
An Easy Web Presence Company

Reply With Quote
  #8  
Old 06-10-2004, 09:23 PM
Gen-T Gen-T is offline
Disabled
 
Join Date: Jan 2004
Posts: 1,769
Quote:
Originally posted by Marque

If you want to see just what CSS can do, check out http://www.csszengarden.com
Odd, but that site is not displaying properly for me. The text at the top of the page runs into (and under) the menu on the right side. Also a couple other smaller problems.

It displayed correctly before though. Hmm....

Reply With Quote
  #9  
Old 06-11-2004, 03:34 AM
Zopester Zopester is offline
Web Hosting Master
 
Join Date: Jan 2003
Location: Houston, TX - Originally from UK
Posts: 697
Quote:
Originally Posted by Marque
HTML will soon be a thing of the past as CSS will eventually take its place.
No and no.

HTML will never "be a thing of the past". CSS will never "take its place".

CSS is a presentational language, HTML is the structural language upon which that presentation applies. So one cannot have one without the other. What I assume you meant is presentational HTML will soon be a thing of the past - an important distinction to make.

__________________
Kinkamono Internet Services - The Internet. Done Right.
Dive In...

Reply With Quote
  #10  
Old 06-11-2004, 04:36 AM
Rich2k Rich2k is offline
Web Hosting Master
 
Join Date: May 2002
Location: UK
Posts: 2,994
Quote:
Originally posted by the_pm
Yes and no. You need to test IE just like you test a number of other browsers, but I've not found a case where breaking the "rules" for IE has been necessary. It definitely calls for some technical creativity though!
Have you ever tried pure CSS layouts? For the most part it works but has a nasty habit of generating horizontal scroll bars when it shouldn't if you use a 100% wide div with padding. And god help trying it in IE on a mac... you simply HAVE to break the rules to get CSS layouts working on that!

Reply With Quote
  #11  
Old 06-11-2004, 04:37 AM
Rich2k Rich2k is offline
Web Hosting Master
 
Join Date: May 2002
Location: UK
Posts: 2,994
Quote:
Originally posted by pmoduk2
If you program perfect with no errors, it will look fine in standard browsers such as IE, Mozilla, Netscape, Safari
If you code perfectly to the standards that statement is simply not true.

Reply With Quote
  #12  
Old 06-11-2004, 04:40 AM
Zopester Zopester is offline
Web Hosting Master
 
Join Date: Jan 2003
Location: Houston, TX - Originally from UK
Posts: 697
Quote:
Originally Posted by Gen-T
Odd, but that site is not displaying properly for me.
Maybe Dave was doing a bit of maintenance when you tried? It just displayed perfectly for me (in Firefox and IE6). Either that, or you have more PC problems than you thought, T.

__________________
Kinkamono Internet Services - The Internet. Done Right.
Dive In...

Reply With Quote
  #13  
Old 06-11-2004, 04:44 AM
Zopester Zopester is offline
Web Hosting Master
 
Join Date: Jan 2003
Location: Houston, TX - Originally from UK
Posts: 697
Quote:
Originally Posted by Rich2k
Quote:
Originally Posted by pmoduk2
If you program perfect with no errors, it will look fine in standard browsers such as IE, Mozilla, Netscape, Safari
If you code perfectly to the standards that statement is simply not true.
How right. You can construct a site that is completely valid HTML and completely valid CSS and it will display totally incorrectly in IE (for example) as compared with other browsers. Broken box-model problem for example. No support for min-width, max-width, min-height and max-height. The list goes on. So good luck with your ideal world there, pmoduk2!

__________________
Kinkamono Internet Services - The Internet. Done Right.
Dive In...

Reply With Quote
  #14  
Old 06-11-2004, 04:47 AM
Zopester Zopester is offline
Web Hosting Master
 
Join Date: Jan 2003
Location: Houston, TX - Originally from UK
Posts: 697
Quote:
Originally Posted by Rich2k
Have you ever tried pure CSS layouts?
Yup.

__________________
Kinkamono Internet Services - The Internet. Done Right.
Dive In...

Reply With Quote
  #15  
Old 06-11-2004, 08:03 AM
Rich2k Rich2k is offline
Web Hosting Master
 
Join Date: May 2002
Location: UK
Posts: 2,994
Quote:
Originally posted by Zopester
Quote:
Originally Posted by Rich2k
Quote:
Originally Posted by pmoduk2
If you program perfect with no errors, it will look fine in standard browsers such as IE, Mozilla, Netscape, Safari
If you code perfectly to the standards that statement is simply not true.
How right. You can construct a site that is completely valid HTML and completely valid CSS and it will display totally incorrectly in IE (for example) as compared with other browsers. Broken box-model problem for example. No support for min-width, max-width, min-height and max-height. The list goes on. So good luck with your ideal world there, pmoduk2!
Although I would say I wish that Mozilla supported overflow-x and overflow-y CSS rather than just overflow.

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
Netcraft Finds Bank, Government, Web Host Sites Using Vulnerable MD5-Signed SSL Certificates Web Hosting News 2012-09-04 15:50:45
Security Researchers Propose New Extension to Solve SSL Certificate Issues Web Hosting News 2012-05-25 12:09:31
Mozilla Asks CAs to Revoke All Subordinate SSL Certificates Web Hosting News 2012-02-21 13:29:11
Google Plans to Disable Online Revocation Checks in Future Chrome Versions Web Hosting News 2012-02-09 13:26:57
Browsers Disable DigiNotar After Rogue Certificate Used in Gmail Attack Web Hosting News 2011-08-30 14:20:17


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?