Complete the code to set a custom margin using Tailwind's arbitrary value syntax.
<div class="m-[1]">Hello World</div>
Arbitrary values in Tailwind are wrapped in square brackets, like [10px], to apply custom CSS values not in the default scale.
Complete the code to set a background color using an arbitrary hex value in Tailwind.
<div class="bg-[1]">Colored Box</div>
Arbitrary colors in Tailwind are written inside square brackets, like [#1a2b3c], to use custom hex colors.
Fix the error in the Tailwind class to apply a custom width of 37rem using arbitrary values.
<div class="w-[1]">Wide Box</div>
Arbitrary values must be wrapped in square brackets without extra prefixes. So [37rem] is correct.
Fill both blanks to create a Tailwind class that sets padding to 12px and text color to a custom hex value.
<div class="p-[1] text-[2]">Custom Styled</div>
Use [12px] for custom padding and [#ff6600] for custom text color with arbitrary values.
Fill all three blanks to create a Tailwind class that sets margin to 8px, font size to 1.25rem, and border radius to 0.5rem using arbitrary values.
<div class="m-[1] text-[2] rounded-[3]">Styled Box</div>
All custom sizes use square brackets for arbitrary values: margin [8px], font size [1.25rem], border radius [0.5rem].