Answers for "how to use col in bootstrap"

8

.col-12 bootstrap

.col-12{
	flex: 0 0 100%;
	max-width: 100%;
}
Posted by: Guest on October-16-2020
0

a column inside another column bootstrap html

<div class="row">
  <div class="col-sm-9">
    Level 1: .col-sm-9
    <div class="row">
      <div class="col-8 col-sm-6">
        Level 2: .col-8 .col-sm-6
      </div>
      <div class="col-4 col-sm-6">
        Level 2: .col-4 .col-sm-6
      </div>
    </div>
  </div>
</div>
Posted by: Guest on June-11-2020

Browse Popular Code Answers by Language