vote up 0 vote down star

Do we use doctype only to render webpages in standard mode with IE6 ? or does doctype do something more than that?

flag

44% accept rate
pavium thx for edit – Jitendra Nov 2 at 11:33

3 Answers

vote up 0 vote down

Doctype could also used to check that your page respects the W3C standard.

link|flag
vote up 1 vote down

It's not just IE6, it tells all browsers how to attempt to render the page.

Good information here and here.

link|flag
vote up 2 vote down

The doctype actually tells ALL browsers the type of content in the page. In many browsers, you'll notice very little difference, but in IE it has two different rendering modes, so you'll see a larger difference.

You should be using a doctype on all of your HTML documents. The idea is that it will be a much simpler doctype in the future - HTML 5 looks like this:

<!DOCTYPE html>

Whereas HTML 4 is like this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

And has Transitional or Strict options.

link|flag
so if we do not use doctype then we won't get much differences in FF, opera , safari – Jitendra Nov 2 at 11:17
2  
IE has four modes unfortunately (IE8 anyway). Here's a fun flowchart: hsivonen.iki.fi/doctype/ie8-mode.png – Steerpike Nov 2 at 11:19
1  
Other browsers also behave very differently depending on the doctype. See en.wikipedia.org/wiki/Quirks_mode – Johannes Rössel Nov 2 at 11:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.