Answers for "bootstrap sm grid"

8

.col-12 bootstrap

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

boostrap grid

<div class="row">
  <div class="col-9">.col-9</div>
  <div class="col-4">.col-4<br>Since 9 + 4 = 13 > 12, this 4-column-wide div gets wrapped onto a new line as one contiguous unit.</div>
  <div class="col-6">.col-6<br>Subsequent columns continue along the new line.</div>
</div>
Posted by: Guest on January-01-2021

Browse Popular Code Answers by Language