473,406 Members | 2,620 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

quirks mode and IE5 vs IE6

Well, it's probably past time for me to regularly include doctype in my
html.

What is quirks mode and how do I avoid it. I seem to recall a specific url
is required.

What is the suggested doctype for html4.0 transitional? That's probably what
I'm writing.

Also, what's the differences between IE5(windows) and IE6?

I don't have IE6, but usually what I write looks very similar in IE5, Opera7
and NS7.1. Sometimes IE5 mac looks a bit different although Safari is good.
What do I need to worry about in IE6?

Cheers,
Jeff
Jul 20 '05 #1
16 2918
On Thu, 12 Feb 2004 05:35:31 GMT, Jeff Thies <no****@nospam.net> wrote:

What is the suggested doctype for html4.0 transitional? That's probably
what
I'm writing.


See http://www.w3.org/TR/html401/struct/...l#version-info
Jul 20 '05 #2
Jeff Thies wrote:
Well, it's probably past time for me to regularly include doctype in my
html.
Umm... very much so.
What is quirks mode and how do I avoid it. I seem to recall a specific url
is required.
Quirks mode is when a browser emulates the stupid mistakes of its
predecessors so code written to love their errors doesn't fall apart.

http://gutfeldt.ch/matthias/articles/doctypeswitch.html
What is the suggested doctype for html4.0 transitional? That's probably
what I'm writing.
HTML 4.01 Transitional isn't suggested, for modern webpages HTML 4.01 Strict
is the most apropriate.

http://www.w3.org/QA/2002/04/valid-dtd-list.html
Also, what's the differences between IE5(windows) and IE6?


IE6 has fewer bugs and fewer massive secuity holes.
--
David Dorward <http://dorward.me.uk/>
Jul 20 '05 #3

"David Dorward" <do*****@yahoo.com> skrev i meddelandet
news:c0*******************@news.demon.co.uk...
Jeff Thies wrote:
Also, what's the differences between IE5(windows) and IE6?


IE6 has fewer bugs and fewer massive secuity holes.


One great benefit is that you can disable receving HTML-formated mails
and news postings from those who still send that.
The body contain only the text.

--
/Arne

Jul 20 '05 #4


Jeff Thies wrote:

What is quirks mode and how do I avoid it. I seem to recall a specific url
is required. Also, what's the differences between IE5(windows) and IE6?


See

http://msdn.microsoft.com/library/de...hancements.asp
for details on IE6 and its two different rendering modes
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #5
DU
Jeff Thies wrote:
Well, it's probably past time for me to regularly include doctype in my
html.

What is quirks mode and how do I avoid it. I seem to recall a specific url
is required.

What is the suggested doctype for html4.0 transitional? That's probably what
I'm writing.

Also, what's the differences between IE5(windows) and IE6?

MSIE 5.x for windows does not implement any kind of differentiated
rendering mode. The good news is that with time people do upgrade their
browser. MSIE 6 for windows beta 1 was released in march 2001 IIRC.
I don't have IE6, but usually what I write looks very similar in IE5, Opera7
and NS7.1. Sometimes IE5 mac looks a bit different although Safari is good.
What do I need to worry about in IE6?

Cheers,
Jeff


I recommend you always use a strict definition because in all browsers
supporting standards compliant rendering mode, a doctype declaration
with the strict definition always trigger standards compliant rendering
mode.

DOCTYPEs that will trigger standards compliant behavior in Opera 7, IE6
for Windows, and Netscape 7:
http://www.opera.com/docs/specs/doctype/

There are other related benefits to using a strict definition.
The most important benefits you get when triggering standards compliant
rendering mode in MSIE 6 for windows are
- correct implementation of the CSS1 box model: MSIE 6 in backward
compatible rendering mode still incorrectly implements the CSS1 box model
- faster parsing and faster rendering of pages (assuming your markup is
error-free: best is to use the W3C validator)
- rendering is closer, more consistent to what other W3C web standards
compliant browsers render and this should stay that way or get further
improved with time as browser manufacturers are aiming to support web
standards and they work on eradicating browser bugs

DU
Jul 20 '05 #6
Jeff Thies wrote:
Well, it's probably past time for me to regularly include doctype in my
html.

What is quirks mode and how do I avoid it. I seem to recall a specific url
is required.

What is the suggested doctype for html4.0 transitional? That's probably what
I'm writing.

Also, what's the differences between IE5(windows) and IE6?

I don't have IE6, but usually what I write looks very similar in IE5, Opera7
and NS7.1. Sometimes IE5 mac looks a bit different although Safari is good.
What do I need to worry about in IE6?

Cheers,
Jeff


May I ask you why don't you use IE6? When I have to use IE5 in some
client's office, I suffer a lot. It renders incorrectly lots of pages
and I can't stand that... I can't understand why people doesn't use IE6
if it's safer, faster, more compatible with standards...

So, please, can you tell me why are you still using IE5?

Or, if anyone has reasons, I'd greatly appreciate if you share them with me.

Cheers,
Andrés
Jul 20 '05 #7
<snip>
May I ask you why don't you use IE6? When I have to use IE5 in some
client's office, I suffer a lot. It renders incorrectly lots of pages
and I can't stand that...
Gee, could that be it?

I can't author something that may be badly broken in a mainstream browser,
even if it is that browsers fault.
I can't understand why people doesn't use IE6
if it's safer, faster, more compatible with standards...
By the same token, why use IE at all? If I'm browsing for my own purposes, I
don't use IE.

So, please, can you tell me why are you still using IE5?
Because my clients would go balistic if 18% of their audience had serious
problems with their site and I wasn't even aware of it! It's really the
difference between authoring for yourself, and authoring for a living. If
site appearance is important, and it is for my clients, this goes triple.

I'm just glad I don't have to support NS4 anymore!

Cheers,
Jeff
Or, if anyone has reasons, I'd greatly appreciate if you share them with me.
Cheers,
Andrés

Jul 20 '05 #8
Jeff Thies wrote:
So, please, can you tell me why are you still using IE5?


Because my clients would go balistic if 18% of their audience had serious
problems with their site and I wasn't even aware of it!


That is a good reason to test pages in IE5.

It leaves two questions. Why do you not test your pages in Internet Explorer
6? Why do you not use IE6 for normal use (or better yet, a decent browser
like FireFox)?

--
David Dorward <http://dorward.me.uk/>
Jul 20 '05 #9
"Jeff Thies" <no****@nospam.net> wrote in
news:7D****************@newsread1.news.atl.earthli nk.net:
So, please, can you tell me why are you still using IE5?


Because my clients would go balistic if 18% of their audience had
serious problems with their site and I wasn't even aware of it! It's
really the difference between authoring for yourself, and authoring
for a living. If site appearance is important, and it is for my
clients, this goes triple.


And it's important to remember that many viewers may be using IE5 because
it's what's installed on the machine that they're using and because the
machine isn't their *personal* machine, they *can't* upgrade the browser.
Jul 20 '05 #10
On Sat, 14 Feb 2004, Eric Bohlman wrote:
And it's important to remember that many viewers may be using IE5 because
it's what's installed on the machine that they're using and because the
machine isn't their *personal* machine, they *can't* upgrade the browser.


Sure. But conversely, it may be important to remember that there will
be viewers using IE6 because _that's_ what's installed on their
machine. So designing a page "to" the bugs of IE5 (which might have
been corrected in later versions, but if the author doesn't have one
then he won't necessarily know that) is not the answer, either.

Unfortunately, it's a lot of fuss to maintain more than one version of
Win IE. In fact, due to security concerns we get into trouble if we
run old versions of IE on our network: updating to the latest MS
fixes isn't an option - it's a requirement, in this context.
Jul 20 '05 #11
Alan J. Flavell wrote:
On Sat, 14 Feb 2004, Eric Bohlman wrote:

And it's important to remember that many viewers may be using IE5 because
it's what's installed on the machine that they're using and because the
machine isn't their *personal* machine, they *can't* upgrade the browser.

Sure. But conversely, it may be important to remember that there will
be viewers using IE6 because _that's_ what's installed on their
machine. So designing a page "to" the bugs of IE5 (which might have
been corrected in later versions, but if the author doesn't have one
then he won't necessarily know that) is not the answer, either.

Unfortunately, it's a lot of fuss to maintain more than one version of
Win IE. In fact, due to security concerns we get into trouble if we
run old versions of IE on our network: updating to the latest MS
fixes isn't an option - it's a requirement, in this context.


Actually is very easy to have three versions of IE in the same Windows
installation (I have 5.01, 5.5 and 6.0). I had a page where it was
explained and had direct links to standalone IE5.01 and 5.5... I'll try
to find it and will post it later.
Jul 20 '05 #12
Here it is: http://www.skyzyx.com/archives/000094.php

Enjoy it ;)
Jul 20 '05 #13

"Andrés Sedano" <as*****@ya.com> wrote in message
news:c0**********@news.ya.com...
Here it is: http://www.skyzyx.com/archives/000094.php

Enjoy it ;)


I would, if I didn't get this:

Parse error: parse error in /home/skyzyxco/public_html/refer/refer.php on
line 37
Jul 20 '05 #14
> > And it's important to remember that many viewers may be using IE5
because
it's what's installed on the machine that they're using and because the
machine isn't their *personal* machine, they *can't* upgrade the
browser.
Sure. But conversely, it may be important to remember that there will
be viewers using IE6 because _that's_ what's installed on their
machine. So designing a page "to" the bugs of IE5 (which might have
been corrected in later versions, but if the author doesn't have one
then he won't necessarily know that) is not the answer, either.


You always have flexibility in making legitimate styles.

If you know something is going to cause trouble, then don't use it. Child
selectors springs to mind. Don't design for the bugs, design so the bugs
never come into play. There's more than one way to do it, in Perl and HTML.

I really think if it works in Opera7, NS7.1 and Safari (Mac), you have a
pretty good case for it working in IE6, more so than it "working" in IE5
windows.

Jeff
Jul 20 '05 #15
Jeff Thies wrote:
"Andrés Sedano" <as*****@ya.com> wrote in message
news:c0**********@news.ya.com...
Here it is: http://www.skyzyx.com/archives/000094.php

Enjoy it ;)

I would, if I didn't get this:

Parse error: parse error in /home/skyzyxco/public_html/refer/refer.php on
line 37


http://www.insert-title.com/web_desi...s/dev/multi_IE

Another one (this works, I've just downloaded the two files again)

Cheers
Jul 20 '05 #16
On Sat, 14 Feb 2004, Andrés Sedano wrote:
Here it is: http://www.skyzyx.com/archives/000094.php


It says:

Parse error: parse error in
/home/skyzyxco/public_html/refer/refer.php on line 37

when I try to access it.
Jul 20 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

35
by: Dr.Tube | last post by:
Hi there, I have this web site (www.DrTube.com) which has the following DTD: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> which switches...
10
by: Axel Dahmen | last post by:
Hi, there's one question that's been bothering me for a long time: Why does the TD element not inherit from the BODY element? Is there any reason why properties like "font-family" or "font-size"...
8
by: Chris Sharman | last post by:
I've got the following url (centre generated by cgi, and including banner, menus, etc designed by someone else) - http://services.ccagroup.co.uk/upbin/oformw?&whsmithwedding This looks as intended...
6
by: Thomas | last post by:
In Mozilla: The problem we are trying to solve: We are using XSL/XML to generate tables with text in the rows. The spacing is wider then when those same exact tables are created in regular HTML....
1
by: don.hosek | last post by:
Here's the relevant piece of code. <div style="position:relative;height:506;width:700; z-index:1; background-image:url(images/Mat-Tan.png);"> <div style="position:absolute;z-index:2; height:0;...
18
by: Neil Cherry | last post by:
I'm in the process of redesigning my web page and started working more with CSS. I have, what I think is, a nice web layout (I'm no expert so I could be wrong). When I tested it with Konqueror and...
4
by: Simon Brooke | last post by:
There is no need to respond to this post. There is, in fact, no possible helpful response to this post. I just needed to tear my hair in public... I have a site I wrote for a customer four years...
22
by: Harry Haller | last post by:
Is there any other way apart from: document.compatMode == 'CSS1Compat' <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta...
3
by: DiMono | last post by:
Consider this code: <input type="button" value="u" style="text-decoration: underline;" /> With a complete doctype definition, Firefox will not render the underline, but IE will. With an...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.