如何使用 tailwindcss 制作样式化的圆形组件?

How to make a styled circle component using tailwindcss?

我正在我的 React 应用程序中处理图片上传组件,我设计了图片上传器组件。

这里分别是代码和结果。

<div className="px-8 py-6 mt-2 text-left bg-white shadow-lg">
        <form action="">
          <div class="flex  items-center justify-center bg-grey-lighter">
            <label class=" flex flex-col items-center px-4 py-6 bg-white text-blue rounded-lg shadow-lg tracking-wide uppercase border border-blue cursor-pointer hover:bg-blue hover:text-white">
              <AddAPhotoIcon />
              <span class="mt-2 text-base leading-normal">Upload Photo</span>
              <input type="file" class="hidden" />
            </label>
          </div>
        </form>
      </div>

但我想完全按照以下组件进行更改。

结合 rounded-full.

,确保您想要圆形的元素具有相同的宽度和高度

我改编了你的例子,用h-40w-40来控制高度和宽度。使用 rounded-full,结果是一个圆形组件。

<div class="flex items-center justify-center">
  <form action="">
    <label class="text-blue border-blue hover:bg-blue flex h-40 w-40 cursor-pointer flex-col items-center justify-center rounded-full border bg-white uppercase tracking-wide shadow-lg hover:text-white">
      <AddAPhotoIcon />
      <span class="mt-2 text-base leading-normal">Upload Photo</span>
      <input type="file" class="hidden" />
    </label>
  </form>
</div>

这是你想要的吗??

<script src="https://cdn.tailwindcss.com"></script>

<div class="p-10 w-72 border-4 border-gray-200 rounded-full">
  <div class="bg-gray-300 p-20 w-52 rounded-full text-center">
    Upload <br/>Photo
  </div>
</div>