Complete the code to create a row with two equal columns using Bootstrap's 12-column grid.
<div class="row"> <div class="col-[1]">Column 1</div> <div class="col-6">Column 2</div> </div>
Bootstrap's grid has 12 columns. To split a row into two equal parts, each column should span 6 columns.
Complete the code to create three equal columns in a Bootstrap row.
<div class="row"> <div class="col-[1]">Col 1</div> <div class="col-[1]">Col 2</div> <div class="col-[1]">Col 3</div> </div>
Three equal columns mean dividing 12 by 3, which is 4 columns each.
Fix the error in the code to make two columns where the first is 8 columns wide and the second fills the rest.
<div class="row"> <div class="col-[1]">Wide Column</div> <div class="col-4">Narrow Column</div> </div>
The first column should be 8 columns wide to complement the second column's 4 columns, totaling 12.
Fill both blanks to create a row with one column taking 3 columns and another taking the remaining space.
<div class="row"> <div class="col-[1]">Small Column</div> <div class="col-[2]">Large Column</div> </div>
The first column uses 3 columns, so the second must use 9 to total 12 columns.
Fill all three blanks to create a row with three columns sized 2, 5, and the remaining columns respectively.
<div class="row"> <div class="col-[1]">Col 1</div> <div class="col-[2]">Col 2</div> <div class="col-[3]">Col 3</div> </div>
The first column is 2, the second is 5, so the third is 12 - 2 - 5 = 5 columns.