Jerry Baker wrote:
> Ethan King wrote:
>
>> Unfortunately one of my limitations is that I need my page to look the same
>> on Netscape 4.x browsers also and as far as I can tell NS 4.x does not
>> support CSS like you suggested.
>>
>> Any other ideas?
>>
>> Thanks,
>> Ethan
>
>
> Just remove the URI from the DTD and Mozilla will use quirks mode and
> you can still validate the document.
>
Before I respond, here is a little clarification:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
I am assuming you mean either:
a) Take out the "-//W3C.." URI - In which case this page cannot be
validated (http://validator.w3.org/file-upload.html)
b) Take out the "DTD/xhtml...". This does validate, but does not render
in Quirks mode (M0.7, N6.0).
c) Comment out or remove the DOCTYPE declaration altogether. This does
render in quirks mode, and validates, but only validates XML, not XHTML.
So, first which do you mean, and second does anyone know how to get
XHTML validation and Quirks mode at the same time?