Posted by Fister on 01/08/08 19:23
Since anchors are inline elements and divs are block elements the validation
doesn't permit me placing an anchor around a div like the following:
<div id="containers">
<a href="page.html">
<div class="container">
<img alt="image" src="image.jpg" />
<div class="heading">Heading</div>
<div class="text">Text</div>
</div>
</a>
</div>
I want for the heading and text to change color whenever the mouse is above
the image, heading or text. I also want for the image, heading and text to
be below eachother so that's why I'm using divs and not spans.
Isn't this common code and how do I make it valid?
Navigation:
[Reply to this message]
|