使用 Rails 7 和 Taildwincss 将图片和卡片并排放置

Using Rails 7 and Taildwincss to put a picture and a card next each other

我正在尝试使用 Rails 7 和 Tailwindcss 实现以下设计:

我是 Taildwincss 的新手,我知道有很多方法可以实现这种设计。但是我不能完全复制它。这是我在我看来使用的代码:

<div class="grid gap-1 grid-cols-12 grid-rows-1">
  <% @user.each do |user| %>
    <% if user.photo? %>
      <div class="p-5 col-span-2">
        <div class="bg-white p-5 rounded-lg shadow-lg">
          <%= image_tag "user_photo.png", width: 100 %>
        </div>
      </div>
    <% else %>
      <%# ToDo: %>
      <%# image_tag user.photo, width: 100 %>
    <% end %>
    <div class="p-5 col-span-10">
      <div class="bg-white p-5 rounded-lg shadow-lg">
        <h2 class="text-2xl font-bold mb-2 text-gray-800"><%= user.name %></h2>
        <p class="text-gray-700 text-right">Number of posts: <%= user.posts.count %></p>
      </div>
    </div>
  <%end%>
</div>

这是结果:

我可以更改哪些内容以更接近线框?

将包含图像和卡片的 div 保留在 flex 中,并向其中添加 item-center class。

参考这个伪代码

<div class="flex flex-row item-center">
    <div class="bg-white rounded-lg shadow">Image</div>
    <div class="bg-white rounded-lg shadow">
        card
    </div>
</div>

这是解决方案代码

<script src="https://cdn.tailwindcss.com"></script>
<div class="flex flex-row items-center">
  <div class="p-10">
    <div class="rounded-lg bg-gray-200 p-10 shadow-lg">%></div>
  </div>

  <div class="p-5">
    <div class="rounded-lg bg-gray-200 p-5 shadow-lg">
      <h2 class="mb-2 text-2xl font-bold text-gray-800">Lily</h2>
      <p class="ml-28 text-right text-gray-700">Number of posts: 2</p>
    </div>

  </div>
</div>