【问题标题】:Not able to make image responsive using tailwind css无法使用顺风 css 使图像响应
【发布时间】:2021-08-21 17:27:13
【问题描述】:

这是代码:)

<div>
  <div class="w-full m-4 rounded-xl flex flex-wrap shadow-md border-2 place-self-center">
    <div class="flex flex-1">
      <img class="object-cover overflow-hidden rounded-tl-xl rounded-bl-xl" src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&ixqx=4ciQ7zshM1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80" alt="image">
    </div>
    <div class="flex flex-1 flex-col justify-evenly p-6">
      <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
        <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
          <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
        </svg>
      </div>
      <h2 class="object-cover text-gray-800 font-extrabold text-4xl">Deliver what your customers <br> want every time</h2>
      <p class="text-gray-600">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.</p>
      <div class="w-96 flex justify-between">
        <div>
          <p class="text-purple-800 font-bold text-3xl">24/7</p>
          <p class="text-gray-600">Delivery</p>
        </div>
        <div>
          <p class="text-purple-800 font-bold text-3xl">99.9%</p>
          <p class="text-gray-600">Pepperoni</p>
        </div>
        <div>
          <p class="text-purple-800 font-bold text-3xl">100k+</p>
          <p class="text-gray-600">Calories</p>
        </div>
      </div>
    </div>
  </div>
</div>

我想让我的图像具有响应性。当我折叠屏幕尺寸时,图像也在折叠,而我想让图像和整个容器相对于屏幕尺寸缩小。

谁能帮帮我。我是顺风 css 的新手。

谢谢你:)

【问题讨论】:

    标签: css flexbox responsive-design tailwind-css tailwind-in-js


    【解决方案1】:

    删除flex-wrap 并使用sm:flex-row flex-col 在手机屏幕上显示flex-direction: column

    您还可以将min-w-0 添加到第二列,以便能够缩小它。

    Demo

    【讨论】:

      猜你喜欢
      • 2021-05-22
      • 2021-11-29
      • 2021-04-07
      • 1970-01-01
      • 2021-07-01
      • 1970-01-01
      • 2015-01-17
      • 2015-04-08
      • 1970-01-01
      相关资源
      最近更新 更多