Do we use doctype only to render webpages in standard mode with IE6 ? or does doctype do something more than that?
|
|
Doctype could also used to check that your page respects the W3C standard. |
||
|
|
|
|
It's not just IE6, it tells all browsers how to attempt to render the page. |
||
|
|
|
|
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:
Whereas HTML 4 is like this:
And has Transitional or Strict options. |
||||||||||
|
