I have a question about the Bootstrap. In my case I'm displaying a list of posts and I am using the column 6 size (col-lg-6
) more than two times within a row. I know that the row accepts only 12 columns at all.
Is this okay to be used in this way?
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
</div>
The result I get is fine so I assume that it's okay to be used in this context of displaying posts.