First I was using a table to layout some elements in my page, with the <table>
<thead>
etc... tags.
Then I found that bootstrap has a grid system, and I want to use it for laying out my elements. This went ok for the layout, with <div class="row">
for each <tr>
tag and <div class="col-md-12">
for each <td>
tag.
However I would like to use some styling provided by bootstrap, such as available for the table at this first example. Is this possible or available?
Right now I just get the layout, but no separation (e.g. borders) between rows like with the table example. Am I going at this the wrong way, or is there actually a way to style this grid in a table like fashion, and how would I do this?