Stop Quirkiness - Use a proper doctype
Published by Sara Jacobson
Aug 6, 2006 10:28 PM under Quick Reference
I found myself for a third time this month having to google for doctype definitions, so I’m listing them here for reference.
One of the most common causes of IE-related quirkiness is failure to use a proper doctype. This throws IE into Quirks mode…a mode designed to help old, non-compliant docs still render nicely. The downside is it can cause proper code to act, well, quirky.
Use a proper doctype! Then you’ll just have to handle IE’s less-quirky, more annoying traits.
HTML 4.01 Frameset
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> |
HTML 4.01 Transitional
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
HTML 4.01 Strict
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
XHTML 1.0 Frameset
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> |
XHTML 1.0 Transitional
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
XHTML 1.0 Strict
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
XHTML 1.1
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
Add Your Comment
« Previous Article
Next Article »