I believe the reason for this is that conquerer sees an error with your
HTML.  The paragraph tag is one of those block level elements that can
only contain inline level elements.  H3 is a block level element.  I
found this link, which seems to have good information about why this is
the case.

http://www.autisticcuckoo.net/archive.php?id=2005/01/11/block-vs-inline-
1

In your example, there really is no need to have the following:

<p><h3>text</h3></p>

It can be replaced with:

<h3>text</h3>

This will remove the issue and tidy up your code.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to