Complete the code to create a Bootstrap row with two columns where the first column takes 8 parts of the width.
<div class="row"> <div class="col-[1]">First column</div> <div class="col-4">Second column</div> </div>
The first column should use col-8 to take 8 parts of the 12-part grid.
Complete the code to create a Bootstrap row with three columns where the middle column is 6 parts wide.
<div class="row"> <div class="col-3">Left</div> <div class="col-[1]">Center</div> <div class="col-3">Right</div> </div>
The middle column should be col-6 so the total adds to 12 (3 + 6 + 3).
Fix the error in the code to make the columns add up to 12 parts in the row.
<div class="row"> <div class="col-5">Column 1</div> <div class="col-[1]">Column 2</div> </div>
The columns must add up to 12. Since the first is 5, the second should be 7.
Fill both blanks to create a row with three columns where the first is 3 parts and the last is 5 parts wide.
<div class="row"> <div class="col-[1]">First</div> <div class="col-[2]">Second</div> <div class="col-5">Third</div> </div>
The first column is 3, the last is 5, so the middle must be 4 to total 12 (3 + 4 + 5).
Fill all three blanks to create a row with four columns where the first is 2 parts, the second is 3 parts, and the last is 4 parts wide.
<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 class="col-4">Col 4</div> </div>
The first column is 2, second is 3, last is 4, so the third must be 3 to total 12 (2 + 3 + 3 + 4).