Complete the code to add a top offset of 4 units using Tailwind CSS.
<div class="relative [1]">Content</div>
The class top-4 adds a top offset of 1rem (4 units) when the element is positioned.
Complete the code to add a right offset of 8 units using Tailwind CSS.
<div class="absolute [1]">Box</div>
The class right-8 moves the element 2rem (8 units) away from the right edge.
Fix the error in the code to correctly add a bottom offset of 2 units using Tailwind CSS.
<div class="relative [1]">Footer</div>
The correct Tailwind class for bottom offset is bottom-2. It uses a dash, not other symbols.
Fill both blanks to add left and top offsets of 6 units using Tailwind CSS.
<div class="absolute [1] [2]">Box</div>
The classes left-6 and top-6 add 1.5rem (6 units) offsets from the left and top edges respectively.
Fill all three blanks to add top, right, and bottom offsets of 1, 3, and 5 units respectively using Tailwind CSS.
<div class="relative [1] [2] [3]">Content</div>
The classes top-1, right-3, and bottom-5 add offsets of 0.25rem, 0.75rem, and 1.25rem respectively from the top, right, and bottom edges.