From Htmlpedia
Contents |
[edit]
Tidy: <...> is probably intended as </...>
[edit]
Cause:
A tag without cumulative effect is been applied twice to HTML text. It is useless and probably unintentional.
[edit]
Example:
Here is a sample with <em> (emphasis). Two emphasis tags have the same effect as one.
![]() | <em>hello<em> world</em></em> |
![]() | <em>hello world</em> |
[edit]
Solution:
Remove the second tag.
[edit]
References:
- HTML specification: http://www.w3.org/TR/html4/


