Can someone help me with this code snippet I have written:
<script src="https://cdn.tailwindcss.com"></script>
<div class="m-6 space-x-3">
<div v-for="m in media" class="w-[200px] h-[200px] inline-block">
<img class="object-contain w-full h-full shadow shadow-black" src="http://placekitten.com/200/300">
</div>
<div v-for="m in media" class="w-[200px] h-[200px] inline-block">
<img class="object-contain w-full h-full shadow shadow-black" src="http://placekitten.com/300/200">
</div>
</div>
After running the code, the output is as shown https://i.sstatic.net/uyTbJ.png
I am facing an issue where the shadow effect applies to the box that holds the image instead of the actual image itself. How can I modify the code to make the shadow apply directly to the image?