Lid |
|
Beste,
ik werk met sprites. ik wil dus niet het volgende doen:
<div class="a"><img src="test.png" alt="home"></div>
<div class="a"><img src="test.png" alt="home"></div>
als ik een button wil maken.
Echter wil ik wel een link maken van deze button, maar als ik nu doe:
<a href="http://site.nl" title="visit us"><div class="a"><img src="test.png" alt="home"></div></a>
<a href="http://site.nl" title="visit us"><div class="a"><img src="test.png" alt="home"></div></a>
dan is mijn HTML niet meer geldig, ik krijg dan de volgende foutmelding:
Line 113, Column 38: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
Kan iemand mij vertellen hoe ik dit op een correcte manier kan oplossen?
|