W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
用來設(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>
要在特定的斷點(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,
}
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: