Complete the code to add a small shadow to the box using Tailwind CSS.
<div class="shadow[1] p-4 bg-white rounded">Shadow Box</div>
shadow-lg or bigger classes for a small shadow.shadowsm.The shadow-sm class adds a small shadow to the element.
Complete the code to add a large shadow to the box using Tailwind CSS.
<div class="shadow[1] p-6 bg-gray-100 rounded">Large Shadow Box</div>
shadow-sm which is too small.shadow-xl which is extra large.The shadow-lg class adds a large shadow to the element.
Fix the error in the code to apply a medium shadow using Tailwind CSS.
<div class="shadow[1] p-5 bg-blue-50 rounded">Medium Shadow Box</div>
medium which Tailwind does not support.The correct class is shadow-md with a dash before md.
Fill both blanks to create a box with an extra large shadow and padding of 8.
<div class="shadow[1] p-[2] bg-green-50 rounded">Extra Large Shadow Box</div>
shadow-lg instead of shadow-xl.p-6.shadow-xl adds an extra large shadow and p-8 adds padding of 2rem.
Fill all three blanks to create a box with a double extra large shadow, padding 10, and rounded corners.
<div class="shadow[1] p-[2] rounded[3] bg-yellow-50">Double XL Shadow Box</div>
shadow-xl instead of shadow-2xl.rounded-lg.p-8.shadow-2xl adds a very large shadow, p-10 adds padding of 2.5rem, and rounded-lg adds medium rounded corners.
