I use bootstrap 3 grid system as the following
<div class="row ">
<div class="col-md-4 ">label1:</div>
<div class="col-md-6"> {{{ $value1 }}} </div>
</div>
<div class="row ">
<div class="col-md-4 " >label2:</div>
<div class="col-md-6"> {{{ $value2 }}} </div>
</div>
but rows are very tight together and I need some vertical spacing between two adjacent rows.
I know form-group
class works for forms, I look for such a class for rows of table or I should use form-group
?
A more semantic structure would be to use Bootstrap's horizontal description lists.
They have the added advantage of auto-truncating the description with an ellipsis (...) if the description becomes too long to display.
Bootstrap CSS docs:
http://getbootstrap.com/css/#type-lists
(and scroll down to Horizontal description).