how to create following grid with bootstrap 3 ? i checked out many answers but didn't find a solution to my grid.
Asked
Active
Viewed 3,297 times
0
-
1Please post your code. – scharfmn Aug 21 '15 at 12:24
2 Answers
0
Make 3 big columns and inside each just add more rows as you need them.
Example:
<div class="row">
<div class="col-md-4">
<p>left column text here you can also add another row here with more cols inside</p>
</div>
</div>
Here is the refrence on the grid system: http://getbootstrap.com/css/#grid

kir13y
- 69
- 1
- 2
- 10