Tailwind CSS 最大高度

2022-08-08 10:03 更新

最大高度

用來設(shè)置元素最大高度的功能類

Class
Properties
max-h-0 max-height: 0px;
max-h-px max-height: 1px;
max-h-0.5 max-height: 0.125rem;
max-h-1 max-height: 0.25rem;
max-h-1.5 max-height: 0.375rem;
max-h-2 max-height: 0.5rem;
max-h-2.5 max-height: 0.625rem;
max-h-3 max-height: 0.75rem;
max-h-3.5 max-height: 0.875rem;
max-h-4 max-height: 1rem;
max-h-5 max-height: 1.25rem;
max-h-6 max-height: 1.5rem;
max-h-7 max-height: 1.75rem;
max-h-8 max-height: 2rem;
max-h-9 max-height: 2.25rem;
max-h-10 max-height: 2.5rem;
max-h-11 max-height: 2.75rem;
max-h-12 max-height: 3rem;
max-h-14 max-height: 3.5rem;
max-h-16 max-height: 4rem;
max-h-20 max-height: 5rem;
max-h-24 max-height: 6rem;
max-h-28 max-height: 7rem;
max-h-32 max-height: 8rem;
max-h-36 max-height: 9rem;
max-h-40 max-height: 10rem;
max-h-44 max-height: 11rem;
max-h-48 max-height: 12rem;
max-h-52 max-height: 13rem;
max-h-56 max-height: 14rem;
max-h-60 max-height: 15rem;
max-h-64 max-height: 16rem;
max-h-72 max-height: 18rem;
max-h-80 max-height: 20rem;
max-h-96 max-height: 24rem;
max-h-full max-height: 100%;
max-h-screen max-height: 100vh;

使用方法

使用 ?max-h-full? 或 ?max-h-screen? 功能類設(shè)置元素的最大高度。


<div class="h-24 ...">
  <div class="h-48 max-h-full ...">
    .max-h-full
  </div>
</div>

響應(yīng)式

要在特定的斷點(diǎn)處控制元素的最大高度,請?jiān)谌魏维F(xiàn)有的最大高度功能類前添加 ?{screen}:? 前綴。

<div class="h-48 max-h-full md:max-h-screen ...">
  <span>Target</span>
</div>

關(guān)于 Tailwind 的響應(yīng)式設(shè)計(jì)功能的更多信息,請查看 響應(yīng)式設(shè)計(jì) 文檔。

自定義

最大高度比例

在您的 ?tailwind.config.js? 文件的 ?theme.maxHeight? 部分定制 Tailwind 的默認(rèn)最大高度。

  // tailwind.config.js
  module.exports = {
    theme: {
      maxHeight: {
       '0': '0',
       '1/4': '25%',
       '1/2': '50%',
       '3/4': '75%',
       'full': '100%',
      }
    }
  }

在 主題自定義文檔 中了解更多關(guān)于自定義默認(rèn)主題的信息。

變體

默認(rèn)情況下, 針對 max-height 功能類,只生成 responsive 變體。

您可以通過修改您的 ?tailwind.config.js? 文件中的 ?variants ?部分中的 ?maxHeight ?屬性來控制為 max-height 功能生成哪些變體。

例如,這個配置也將生成 hover and focus 變體:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
       maxHeight: ['hover', 'focus'],
      }
    }
  }

禁用

如果您不打算在您的項(xiàng)目中使用 max-height 功能,您可以通過在配置文件的 ?corePlugins ?部分將 ?maxHeight ?屬性設(shè)置為 ?false ?來完全禁用它們:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
     maxHeight: false,
    }
  }


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號