顺风:在图像顶部居中 div

Tailwind: Centered div on top of image

我有以下 HTML:

<div>
<img src="">
<div><!-- centered form on top of the image --></div>
</div>

Here is how the layout should be

如何使用 Tailwind 进行操作?解决方案必须具有响应性。我不想使用背景图像 CSS 属性。我想改用 <img> 标签

标记必须是这样吗?这样的事情怎么样:

<div class="container mx-auto bg-gray-500 w-1/2 p-4 relative">
  <img src="http://placehold.it/300" alt="" class="w-full h-auto">
  <div class="bg-red-300 w-1/2 h-1/2 absolute top-1/4 left-1/4 rounded-lg p-4">div</div>
</div>

现场观看:https://play.tailwindcss.com/IxHzcdTq1a