cfdvlpr schrieb:
I want to do something like this:

<a href="/test.cfm" class="testBiggerLink">
      <div class="anotherClass">
       Click Here
       to ... <b>go here</b>
       more text
       <img src="/test.png" />
      </div>
</a>

Is there anything wrong with the above HTML?
Yes, it is. A div is a block element, a "a" is inline element. The browser most likely inteprets that as this:

<a/><div/>

Jörn

Reply via email to