I am new to bootstrap
Is row
and col-md-12
both are same or different.? if diff how.?
I don't see any changes in output, I may wrong.!
With Row
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<p>Words go here</p>
</div>
</div>
</div>
Without Row:
<div class="container">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<p>Words go here</p>
</div>
</div>