Turn a collection of headings, paragraphs and lists into one hyperlink

Posted by Moak on Stack Overflow See other posts from Stack Overflow or by Moak
Published on 2011-01-14T13:34:37Z Indexed on 2011/01/14 13:53 UTC
Read the original article Hit count: 272

Filed under:
|

Is there a valid non js way to turn a collection of headings, paragraphs and lists into one url? (like in advertisements?)

<a href="http://www.example.com" class="allclickable">
      <h2>Fresh Bread</h2>
      <p>Delivered to your door</p>
      <ul>
          <li>Daily</li>
          <li>Fresh</li>
          <li>Bread</li>
      </ul>
</a>

This does not validate and I do want the href to be display as block element (so also the space around the text is clickable).

Cheers

© Stack Overflow or respective owner

Related posts about html

Related posts about hyperlink