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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -