html - Make entire <div> inside <a> clickable -


i'm trying make entire content inside <a> tag clickable text right now.

here codepen: http://codepen.io/francobermudez/pen/dvbpnw?editors=1100

html:

<section id="ultimos-eventos">     <div class="eventos-wrap">          <a href="#">             <div class="evento">                 <div class="evento-fecha">                     <div class="evento-dia">20</div>                     <div class="evento-mes">mar</div>                 </div>                 <div class="evento-info">                     <div class="evento-titulo">this title</div>                     <div class="evento-subtitulo">                         <div class="evento-direccion"><div></div>this subtitle</div>                         <a class="btn-evento btn-azul" href="#">detalles</a>                     </div>                 </div>             </div>         </a>      </div> </section> 

you have link inside link (the "detalles" text) - cannot work. delete inner link (i.e. convert regular text div or p tag) , you'll able click whole container.

<section id="ultimos-eventos">      <div class="eventos-wrap">            <a href="#">              <div class="evento">                  <div class="evento-fecha">                      <div class="evento-dia">20</div>                      <div class="evento-mes">mar</div>                  </div>                  <div class="evento-info">                      <div class="evento-titulo">this title</div>                      <div class="evento-subtitulo">                          <div class="evento-direccion"><div></div>this subtitle</div>                          <div>detalles</div>                      </div>                  </div>              </div>          </a>        </div>  </section>

http://codepen.io/anon/pen/gwbnjn?editors=1100


Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -