Tagged Questions

The doctype declaration should be the very first thing in an HTML document, before the `<html>` tag.

learn more… | top users | synonyms

132
votes
10answers
33k views

Any reason not to start using the HTML 5 doctype? [closed]

<!DOCTYPE html> It is supposed to be backwards compatible with HTML4 and XHTML. John Resig posted about some of the benefits. As long as we don't use any of the new and not supported yet ...
19
votes
6answers
6k views

What are the different doctypes in html and what do they mean?

As the title describes, what are the different doctypes available and what do they mean? I notice that the layout looks a little different in IE7 when I switch from <!DOCTYPE HTML PUBLIC ...
13
votes
5answers
2k views

Can HTML comments appear before the DOCTYPE declaration?

I would like to place a comment (<!-- this --> style) at the very top of my HTML, preceding the DOCTYPE declaration. Does the standard allow this? Is it supported by the major browsers? Are ...
12
votes
3answers
400 views

What reasons could justify apple's HTML5 demos use of HTML4 doctypes?

Some of Apple's HTML 5 demos use an html4 loose doctype: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> What reasons could they have ...
11
votes
1answer
327 views

Which mode is IE6 if doctype is html as HTML5?

If web page has doctype as HTML5. <!doctype html> Which render mode is it for IE6? The document.compatMode tells CSS1Compat. It looks Standard mode, not quirks mode. But, is it true? IE6 is ...
11
votes
6answers
4k views

Why does the HTML5 DOCTYPE mess with my padding?

I have an html5 page with a navbar. Completely scratch coded. I just recently added a doctype to the item, and now I’m getting extra space under my navbar. If I remove the doctype declaration, it goes ...
11
votes
2answers
5k views

what doctype should I use for a mobile website?

I'm creating a mobile version of my website from scratch, but I'm unsure what doctype I should use. There does not seem to be a clear standard is that true? On many mobile sites I see : <!DOCTYPE ...
11
votes
4answers
2k views

If I use HTML 5's doctype, what will happen?

I have recently been learning about doctypes, and was I wondering what the differences between <!DOCTYPE html> and some of the others were. I know <!DOCTYPE html> is the HTML5 doctype and ...
9
votes
3answers
3k views

HTML 5 Doctype causing quirksmode?

Does using an HTML 5 Doctype cause Quirks mode in modern browsers, since HTML5 isn't out yet? (That is Modern Browsers were out before HMTL5 started spreading, so they don't properly support it.) If ...
9
votes
10answers
1k views

Why is XHTML 1.0 Transitional so popular?

My company is looking to replace all websites in the group with a new CMS-based system and similar designs/styling, with E-Commerce functionality being added in a future phase. It's too big a job for ...
8
votes
8answers
247 views

Whats the point of DOCTYPE?

I know that different doctypes are essentially about how compliant the html is, but what difference does it make what doctype you specify? Do browsers handle the same code differently depending on the ...
8
votes
5answers
585 views

What DOCTYPE should I target today?

I'm refactoring a .Net web application that is in <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > Right now the approach is just to aim for the stars and go for the latest ...
8
votes
2answers
351 views

How can I force a SAX parser to use a DTD if one is not specified in the input file?

How can I force a SAX parser (specifically, Xerces in Java) to use a DTD when parsing a document without having any doctype in the input document? Is this even possible? Here are some more details ...
7
votes
1answer
81 views

How to check if a DOM Node is the node representing the doctype declaration?

So let's say (in IE8) that we have a document. Now normally we can assume that document.childNodes[0] is the doctype. So var doctype = document.childNodes[0] Now how do we confirm rather then ...
7
votes
4answers
367 views

Java : parsing xml with DOM, DOCTYPE gets erased !

how come dom with java erases doctype when editing xml ? got this xml file : <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!DOCTYPE map[ <!ELEMENT map (station*) > ...
7
votes
8answers
287 views

In the summer of 2010 is it time to start using HTML5?

I created this question as community wiki in the hope that it and its answers will be edited as the situation with HTML5 changes. Time to use HTML5? This question gets trotted out about once a year, ...
7
votes
2answers
1k views

Why certain DOCTYPE declarations cause 100%-height tables and divs to stop working?

It seems to me that some DOCTYPE declarations in IE (6-8) may cause the browser to ignore height="100%" on tables and divs (style="height:100%") E.g <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
6
votes
2answers
190 views

Is there an advantage to using the XHTML 1.1 doctype with the “text/html” MIME type instead of an HTML doctype?

XHTML 1.1 is intended to be used with the "application/xhtml+xml" MIME type. Yet almost no one does this, because IE doesn't handle the "application/xhtml+xml" MIME type correctly, and draconian error ...
6
votes
1answer
209 views

Can W3C DOM be used to create Document/DocType nodes?

I'm curious if there is a way to create DocType nodes via W3C DOM? The spec explicitly states that they are readonly and cannot be edited, but are they able to be created? ...
6
votes
4answers
429 views

Which DOCTYPE declaration should we use?

I have read a number of books on DOCTYPE declaration and the three variations: strict, transitional and frameset. But I am still not able to fully understand their difference and indeed am not sure ...
6
votes
1answer
231 views

Why is ie7 always in Quirks mode?

Here is the DOCTYPE and XML declaration that I am using: <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ...
6
votes
11answers
1k views

Why does Opera parse my web page as XML?

I just tried viewing my website http://www.logmytime.de/ in Opera (version 10.50) it gives me an "xml parsing failed error" and refuses to display the web page. I can choose to "Reparse the document ...
6
votes
2answers
1k views

Read doctype with JavaScript

Is the doctype part of the DOM, and if so, is there a good cross-browser way to read it? I'm not trying to do anything fancy. I just want to access the doctype information from within some ...
6
votes
6answers
496 views

What are the concrete risks of using custom HTML attributes?

This subject turned into a heated discussion at the office, so I'm interested to learn what you think. We are working on a web app that only targets some specific browsers. These browsers presently ...
5
votes
2answers
3k views

HTML5 doctype putting IE9 into quirks mode?

I'm trying to get IE9 to load my page with IE9 standards... I noticed having <!DOCTYPE HTML> puts the damn thing into quirks mode... Which pretty much breaks everything on page... How do I get ...
5
votes
1answer
198 views

XSLT fails to add DOCTYPE using xs:output

I'm using XSLT to create a HTML output page. I need to add a doctype to the output page. I googled and this seems to be able to get it working: <xsl:output doctype-public="-//W3C//DTD XHTML 1.0 ...
5
votes
3answers
157 views

Actual Use of Doctype

While I have gone through a lot of information on w3.org about Doctype and understand the different types of doctypes (Transitional, Strict, Frameset) I am still not clear what is the actual use of ...
5
votes
2answers
98 views

Is the HTML Doctype URL downloaded by the client browser?

I was just wondering when I declare a Doctype such as the following: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> Is strict.dtd read from ...
5
votes
1answer
799 views

Can I have <SCRIPT> tag inside <TABLE>?

I got to have a tag inside a table because PHP writes a code there that adds stuff to an earlier created Javascript array. However, I get a validation error (4.01 strict). Is there any way I can do ...
5
votes
3answers
1k views

Google Map not working with XHTML Doctype (Document Type)

Why on the earth there is always a chance that if we use "Doctype" with Google Maps, there will be a problem in showing the Google Map correctly? In a recent case, this "Doctype" just took my 2 ...
5
votes
3answers
170 views

Explanation of the Doctype Syntax

There are plenty of threads explaining what Doctype to choose, but I can't find any explaining the actual syntax. Take for example: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
5
votes
1answer
473 views

Strict doctype - form and input element

Does anyone know the reasoning behind the strict doctype not allowing input elements to be direct descendents of a form element. I find it annoying that i have to wrap a submit button which is a ...
5
votes
1answer
320 views

Are Single Quotes Valid in a Doctype?

As stated in this question, single quotes in html has either become more popular or we have begun to notice them more often. Regardless, I have a related question. The HTML 4.01 Strict doctype as ...
5
votes
3answers
622 views

Does every html page with doctype need internet connection to render page properly?

many doctype use a url link like this <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
5
votes
2answers
2k views

How do I add a document type to an XDocument?

I have an existing XDocument object that I would like to add an XML doctype to. For example: XDocument doc = XDocument.Parse("<a>test</a>"); I can create an XDocumentType using: ...
5
votes
3answers
6k views

how to disable dtd at runtime in java's xpath?

I got dtd in file and I cant remove it. When i try to parse it in Java I get "Caused by: java.net.SocketException: Network is unreachable: connect", because its remote dtd. can I disable somehow dtd ...
4
votes
4answers
52 views

Is it safe to simply change web page doctype HTML 4.01 or XHTML 1.0 to doctype HTML5?

Suppose I want to change a legacy web site to be "HTML5"-ish, is it safe to simply change the heading doctype as below? <!doctype html> The original doctype might be: <!DOCTYPE HTML PUBLIC ...
4
votes
4answers
123 views

Why put an XHTML doctype declaration on HTML files? What does that do?

I wonder about the number of web pages I encounter that are HTML files, but that wear an XHTML DOCTYPE declaration. Why are people doing this? What do they hope to achieve? Why not reserve the XHTML ...
4
votes
2answers
296 views

Uppercase or lowercase doctype?

When writing the HTML5 doctype what is the correct method? <!DOCTYPE html> or <!doctype html>
4
votes
1answer
177 views

Mysterious padding/margin appears after image in strict mode

I created a new document both with xhtml 1.0 and html 4.01 STRICT just to isolate this. All I have in its body is: <div style="border: blue 3px solid;"> <img src="testimage.jpg" width="800" ...
4
votes
3answers
102 views

How do I fix my site after realising the doctype was wrong?

While trying to fix the hover bug in internet explorer I realised that the doctype was written wrong. I corrected it but now the formatting is wrong in firefox! The site should look like this but it ...
4
votes
3answers
916 views

InnerHTML/outerHTML in IE doesn't reflect checkbox state except in quirks mode

I am currently battling an IE JavaScript/DOM bug (what fun) and it has truly stumped me. The code in question copies some checkboxes into a form and needs to maintain their checked state. Problem ...
4
votes
5answers
1k views

Doctype, HTML 5

i have two questions: 1) was HTML5 released and if yes, when? 2) is doctype HTML 5 in use? or is it better to use one of these: - HTML 4.01 Strict, - HTML 4.01 Transitional, - HTML 4.01 Frameset, - ...
4
votes
2answers
2k views

iframe 100% height causing vertical scrollbar

I'm trying to layout a design that has a fixed height header at the top of the screen, and then an iframe below taking up the remaining space. The solution I came up with is as follows: <!DOCTYPE ...
4
votes
2answers
3k views

Which doctype should I use for GWT 2.0?

I think I should use <!DOCTYPE html> for my new GWT application; I understand that doing so will put my application into standards-compliant mode. Am I correct? Are there any disadvantages to ...
4
votes
1answer
173 views

What are reasons not to use doctypes in 2010?

I have just been involved in writing an application that does not use Doctype's on the jsp's. It has become increasingly difficult to fix html errors on different browsers because of this. I have ...
4
votes
7answers
843 views

Which HTML DocType?

I was asked today by a senior developer which doctype I'd use if I was going to write something (personal / non-commercial) for the open web. I responded, <!doctype html>, to which I was ...
4
votes
2answers
480 views

Proper DOCTYPE… custom attributes and non-standard markup

Ok, don't get me wrong, I absolutely love the idea of web standards... wrote and validated a number of pages with strict XHTML 1.0 - however, the web is evolving... and the more I use XML, realize the ...
4
votes
5answers
3k views

Strict DOCTYPE affecting spacing between images

I am having problems with my image spacing when I switched to XHTML Strict DOCTYPE. The following code - which uses Yahoo's reset stylesheet to kill off all default browser padding - leaves a gap of ...
3
votes
3answers
38 views

Doctype and CSS

I have following code with doctype transitional but when I set it to strict then the position of images get changed and moves upward. Could you please help me in understanding the underlying issue and ...

1 2 3 4 5 8