[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: IE 7 Problems
From: |
Przemek Klosowski |
Subject: |
Re: IE 7 Problems |
Date: |
Wed, 1 Nov 2006 11:25:19 -0500 (EST) |
It is possible that it is some weird IE7 quirks mode effect; the DOCTYPE
declaration on the Octave page is split into 2 lines:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
I have heard that for some browsers to trigger strict mode rather than
quirks mode the !DOCTYPE line has to match byte-for-byte, so could the
IE7 person check how it looks if the line is unsplit:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
alternatively, how's with the Transitional DOCTYPE:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">