Hi,
I could find a solution on web, or maybe I searched for a wrong term, but how can I wrap a link around text ?
for example, I have this code:
<a href="..."><div> some text...text ....text .</div></a>
but it doesnt pass validation as I am wrapping block element with inline element. What I am trying to find is how to put a link over text only (inside div tags)
<div> <a href="...">some text...text ....text .</a></div>
any help would be much appreciated

cheers,
Ivan