vote up 0 vote down star

The following snippet, with or without the DOCTYPE declaration, renders the <pre> content slightly differently, i.e., the without-DOCTYPE version renders the <pre> content with less height.

<!-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" -->
<!-- "http://www.w3.org/TR/html4/strict.dtd"> -->
<html>
  <head>
  </head>
  <body>
    <pre>1</pre>
  </body>
</html>

What causes this difference?

flag

50% accept rate
1  
Dunno, but it's gotta be browser-dependent. Basically, don't ever rely on the default stylings if you want something to look a certain way... add a stylesheet. – Mark Aug 1 at 1:59

2 Answers

vote up 3 vote down check

You, my friend, are seeing quirksmode in action.

This has a long story behind it but to summarize it briefly:

alt text

In the browser wars era (late 1990's) every browser rendered html "its own way". IE's rendering was different from Netscape. By "rendering differently" I mean kind of what you are experiencing here.. only much, much, much worse.. a site you open in IE fine, would be just completely unusable in Netscape, because the tables would be skewed, or some button completely unreachable because it is off-screen or something.

This resulted in pages that said things like "Best viewed in Internet Explorer 3.0" or "Best viewed in Netscape 4.0". Lots of competition. Also icons like this: alt text

All the while these people at W3C are publishing with improved "standards". W3C kept saying "If each manufacturer stuck to the standard.. then we wouldn't have any problems". The W3C standard was supposed to be the CORRECT WAY to render HTML so it should look the same in all browsers. There is the the acid test to check css rules are implemented properly in the browser. If your browser implements it wrong it will look like a bloodspattered war scene (scroll down for sweet screenshots)..

But Microsoft and Netscape were bent on destroying each other, so W3C's calls to obey the standard were ignored..

Quirksmode is the "old" rendering style of a browser. "Standards mode" is when the browser says "OK, we will do it the W3C way (the "right" way)". Including a DOCTYPE at the top of your html page is a message to the browser that says "THIS PAGE is in standards mode, so please, render it in standards mode, and not your old quirky way."

So, your second example (with the plain <html> tag) renders in quirksmode because it lacks a DOCTYPE.

The margin-top on the <pre> tag is different in quirks mode. Its smaller, in Firefox, at least. Other browsers it may be different.

Try replacing your <pre> with

<pre style="margin:5px;">1</pre>

Both pages will look the same if you do that.

link|flag
Hi bob, Your answer clears my thought of the question. I've revise my question into a more accurate one, so can you please revise you answer accordingly? Thanks. – an0 Aug 1 at 2:44
I think you should modify this sentence also: "So, your second example (with the plain <html> tag) renders in quirksmode because it lacks a DOCTYPE." Maybe to something like: "So your code without DOCTYPE is rendered in quirkmode ...". – an0 Aug 1 at 5:05
vote up 0 vote down

Are those supposed to be two seperate files? Does the latter have a doctype? If not it would be rendered in quirks mode.

link|flag
Sorry for the confusion, I've revise it. – an0 Aug 1 at 1:57
Try adding a doctype. – meder Aug 1 at 2:12

Your Answer

Get an OpenID
or

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