Complete the code to create a Bootstrap column that takes up 4 parts of the grid.
<div class="row"> <div class="col-[1]">Content</div> </div>
The class col-4 makes the column take 4 parts of the 12-part grid.
Complete the code to create a row with two columns: one 8 parts wide and the other 4 parts wide.
<div class="row"> <div class="col-[1]">Main</div> <div class="col-[2]">Sidebar</div> </div>
The first column uses col-8 and the second uses col-4 to fill the 12-part grid.
Fix the error in the code to make the column take up half the row width.
<div class="row"> <div class="col-[1]">Half width</div> </div>
Using col-6 makes the column take half of the 12-part grid.
Fill both blanks to create three equal columns in a row.
<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>
Using col-4 for each column divides the row into three equal parts (4 + 4 + 4 = 12).
Fill all three blanks to create a layout with a 3-part column, a 6-part column, and a 3-part column.
<div class="row"> <div class="col-[1]">Left</div> <div class="col-[2]">Center</div> <div class="col-[3]">Right</div> </div>
The columns use col-3, col-6, and col-3 to fill the 12-part grid evenly.