I've read that putting an XML declaration at the start of a document will trip IE6 into quirks mode, and I've read that a
strict DTD will set it into standards mode, but what happens when those are combined? For example, my website currently has the following in its head:
Code:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
(I'm not sure if the html tag matters, but I added it in just in case)