Complete the code to add a margin of 3 units on all sides of the div.
<div class="[1]">Content</div>
p-3 instead of margin.mt-3 which affects one side.mx-3 which affects only left and right.The class m-3 adds margin on all sides with a spacing scale of 3.
Complete the code to add padding of 4 units only on the left side of the paragraph.
<p class="[1]">This is a paragraph.</p>
pr-4 instead of left.The class ps-4 adds padding only on the left side with spacing scale 4.
Fix the error in the code to add horizontal margin of 2 units to the button.
<button class="btn btn-primary [1]">Click me</button>
my-2 instead of horizontal.py-2 instead of margin.m-2 which affects more than horizontal.The class mx-2 adds margin on left and right (horizontal) with spacing 2.
Fill both blanks to add padding of 1 unit on top and margin of 5 units on bottom of the div.
<div class="[1] [2]">Box</div>
pt-1 adds padding on top with spacing 1, and mb-5 adds margin on bottom with spacing 5.
Fill all three blanks to create a div with margin top 4, padding right 3, and margin left 2.
<div class="[1] [2] [3]">Content</div>
mt-4 adds margin on top with spacing 4, pr-3 adds padding on right with spacing 3, and ml-2 adds margin on left with spacing 2.