0

In order to get 100% width, do I need to specify <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">?

<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">**</div>
</div>
Sato
  • 8,192
  • 17
  • 60
  • 115
  • This may help too: http://stackoverflow.com/questions/19865158/what-is-the-difference-among-col-lg-col-md-and-col-sm-in-twitter-bootstra – Carol Skelly Apr 08 '16 at 13:51

1 Answers1

1

No, you just need col-xs-12. The column allocation for the smallest screen applies to all larger devices unless a new column allocation is made.

oldJoe
  • 36
  • 4