Re: Strange css problem (bug?)



Robi wrote:

<body> <a href="http://www.microsoft.com";>This is just a link</a> </body>

As Knud observed, a link is an inline element. XHTML does not like inline elements floating around without containment. So:

<body>
<p><a href="http://www.microsoft.com";>This is just a link</a></p>
</body>

Also I was impressed by the OP's ability to cram so many errors into so little code.

--
jmm dash list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
.