html5 - Bootstrap clickable col -


i have 4 column within row, want link. solution? @ snippet below.

<section id="projectresources">     <div class="container">             <a class="row" href="#">             <div class="col-sm-3">                 <div class="project-resources">                   <h4>bacon ipsum dolor amet capicola hamburger chicken short ribs jerky ball tip pancetta chuck </h4>                   <span class="glyphicon glyphicon-search" aria-hidden="true"></span>                 </div>             </div>          </a>      </div> </section> 

you can this: jsfiddle.net

<section id="projectresources"> <div class="container">         <div class="row">          <a class="col-sm-3" href="#">             <div class="project-resources">               <h4>bacon ipsum dolor amet capicola hamburger chicken short ribs jerky ball tip pancetta chuck </h4>               <span class="glyphicon glyphicon-search" aria-hidden="true"></span>             </div>          </a>      </div>  </div> 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -