2

社区,

我有一个快速的问题。我正在使用当前版本的 Tailwind CSS。

我的目标是将按钮 (corpus delicti) 发送到父 div 的底部。我一直在使用content-between,但这没有用。所以我只是为了好玩justify-between而尝试,按钮元素被发送到父 div 的底部。我不明白。这是为什么?

在 CSS 文档中指出“

... CSS justify-content属性定义了浏览器如何沿着 flex 容器的主轴在内容项之间和周围分配空间[...]。”

在此处输入图像描述

这是CSS代码:

<div class="flex flex-col h-4/5 px-5 items-center justify-center space-x-0 md:flex-row md:space-x-24">


    <div id="parent-div" class="flex flex-col justify-between p-5 w-96 h-96 bg-red-400 ">

      <div class="flex flex-col">
        <h1 class="text-3xl font-bold">foo</h1>
        <p class="text-red-900">bar</p>
        <p class="text-red-900">hoo</p>
      </div>

      <div class="flex flex-row justify-end">
        <button class="w-32 flex flex-row justify-center bg-white rounded-lg shadow-xl">corpus delicti</button>
      </div>

    </div>
    
    <div class="w-96 h-96 bg-yellow-400 flex items-center justify-center md:justify-start">      
      <img class="object-contain" src="../static/pics/gif.gif">
    </div>


</div>

很高兴得到答案,因为这种行为完全破坏了我对 CSS 来之不易的信任。

提前谢谢!

4

1 回答 1

2

去掉flex-colon并在按钮上#parent-div使用h-fit( )。height: fit-content;

这里

<div class="flex flex-col h-4/5 px-5 items-center justify-center space-x-0 md:flex-row md:space-x-24">


  <div id="parent-div" class="flex justify-between p-5 w-96 h-96 bg-red-400 ">

    <div class="flex flex-col">
      <h1 class="text-3xl font-bold">foo</h1>
      <p class="text-red-900">bar</p>
      <p class="text-red-900">hoo</p>
    </div>

    <div class="flex justify-end">
      <button class="w-32 flex h-fit flex-row justify-center bg-white rounded-lg shadow-xl">corpus delicti</button>
    </div>

  </div>

  <div class="w-96 h-96 bg-yellow-400 flex items-center justify-center md:justify-start">
    <img class="object-contain" src="../static/pics/gif.gif">
  </div>


</div>

于 2022-01-10T20:23:22.570 回答