|
Posted by Beauregard T. Shagnasty on 08/17/06 15:40
Martin Plotz wrote:
> Thanks for the hints - but still no effect...
See corrections needed:
> Beauregard T. Shagnasty schrieb:
>> Martin Plotz wrote:
>>
>>>I uploaded the file to
>>>http://www.codecolony.de/martin/cssproblem.htm
>>
>> Perhaps it is the XML prolog that screws up IE. Known problem if the
>> doctype is not first. Remove that line and see what happens.
>>
>> <?xml version="1.0" encoding="ISO-8859-1" ?>
> I had included it because the W3C-Validator didn't find the encoding
> without it...
You could add the following in the <head> section, though the best way
is to make sure your server uses the proper content header.
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"
/>
See: http://www.w3.org/International/O-charset
> I have removed it under www.codecolony.de/martin/cssproblem2.htm.
>> And, new documents should be Strict, not Transitional. You are not
>> transitioning from anything, are you?
>> http://www.w3.org/QA/2002/04/valid-dtd-list.html
>
> ok, I fixed it.
Sort of... Now your doctype is incorrect:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
You want to use the complete Strict link as shown on the W3C page I gave
you.
--
-bts
-Warning: I brake for lawn deer
Navigation:
[Reply to this message]
|