Complete the code to create a column that takes full width on small screens.
<div class="container"> <div class="row"> <div class="col-[1]"> Content here </div> </div> </div>
The class col-12 makes the column take the full width on extra small and small screens.
Complete the code to make a column that is half width on medium screens.
<div class="container"> <div class="row"> <div class="col-[1]-6"> Content here </div> </div> </div>
sm targets smaller screens than medium.lg or xl targets larger screens than medium.The class col-md-6 makes the column take half the width on medium screens and larger.
Fix the error in the class to make the column take one third width on large screens.
<div class="container"> <div class="row"> <div class="col-[1]-4"> Content here </div> </div> </div>
md targets medium screens, not large.xl targets extra large screens, which is larger than large.The class col-lg-4 makes the column take one third width on large screens (≥992px).
Fill both blanks to create a column that is full width on small screens and one quarter width on extra large screens.
<div class="container"> <div class="row"> <div class="col-[1] col-[2]-3"> Content here </div> </div> </div>
sm instead of xl for the large screen size.col-12 makes the column full width on extra small and small screens.col-xl-3 makes it one quarter width on extra large screens.
Fill all three blanks to create a responsive layout: full width on extra small, half width on medium, and one third width on large screens.
<div class="container"> <div class="row"> <div class="col-[1] col-[2]-6 col-[3]-4"> Content here </div> </div> </div>
col-12 makes the column full width on extra small screens.col-md-6 makes it half width on medium screens.col-lg-4 makes it one third width on large screens.