Bootstrap Grid system and Table element -


has bootstrap grid system replaced need table? mean can divide row in 3 parts table like:

<table> <tr> <th></th> <th></th> <th></th> </tr> 

also using grid like:

 <div class="row">  <div class="col-sm-4">.col-sm-4</div>  <div class="col-sm-4">.col-sm-4</div>  <div class="col-sm-4">.col-sm-4</div>  </div> 

somehow looks can use grids , table vice-versa. if have place in navbar @ particular position approach should use? appreciated.

the 2 not equivalent @ - bootstrap uses grid system layout, , tables displaying tabular data.

generally, considered practice. tables difficult make responsive (to alter layouts mobile , tablet views), excellent displaying data similar way microsoft excel displays data.

i recommend reading bootstrap documentation linked above, explain when use each.


Comments