In Bootstrap's grid system, the standard way to create a "row" is to use a markup like this:
<div class="container">
<div class="row">
... columns here ...
</div>
</div>
In our project we use LESS and mixins and semantic classes so this would usually look like:
<div class="content-wrapper">
<div class="content">
...
</div>
</div>
// LESS:
.content-wrapper {
.container;
}
.content {
.make-row();
}
However, those two DIVs are artificial, really, from the semantic point of view I only need one DIV. In Bootstrap, is there a way to somehow make it work with single containing DIV only? Obviously something like this doesn't work:
#content {
// doesn't work
.container;
.make-row();
}