Michael
Michael

Reputation: 337

Validation - document type does not allow element "h4" here

I can't find out what the problem is with this line of code:

<h4><span class="orange">mytitle</span></h4>

This is the error message I receive:

document type does not allow element "h4" here;

What do I need to change? Cheers Mic

Upvotes: 0

Views: 1225

Answers (1)

bpanulla
bpanulla

Reputation: 2998

<h4> (like all headers) is a block level element. You've probably put it directly inside something that doesn't allow it, like <table> or <tr> or an inline element (<span>, <a> ).

Upvotes: 1

Related Questions