Complete the code to create a small Bootstrap button.
<button type="button" class="btn btn-primary btn-[1]">Small Button</button>
The class btn-sm makes the button small in Bootstrap.
Complete the code to create a large Bootstrap button.
<button type="button" class="btn btn-success btn-[1]">Large Button</button>
The class btn-lg makes the button large in Bootstrap.
Fix the error in the button size class to make the button medium size.
<button type="button" class="btn btn-danger btn-[1]">Medium Button</button>
Bootstrap uses btn-md for medium size buttons, but actually medium is the default size and does not require a size class. However, if you want to explicitly specify, btn-md is used in some contexts.
Fill both blanks to create a large, secondary Bootstrap button with the correct size class.
<button type="button" class="btn btn-[1] btn-[2]">Large Secondary Button</button>
The class btn-secondary sets the button color to secondary, and btn-lg sets the button size to large.
Fill all three blanks to create a small, outline-danger Bootstrap button with the correct classes.
<button type="button" class="btn btn-[1] btn-outline-[2] btn-[3]">Small Outline Danger Button</button>
The class btn is the base button class, btn-outline-danger creates an outline style with danger color, and btn-sm makes the button small.