W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
用來設(shè)置元素最小寬度的功能類
Class
|
Properties
|
---|---|
min-w-0 | min-width: 0px; |
min-w-full | min-width: 100%; |
min-w-min | min-width: min-content; |
min-w-max | min-width: max-content; |
使用 ?min-w-0
? 或 ?min-w-full
? 功能類設(shè)置元素的最小寬度。
<div class="w-24 min-w-full ...">
min-w-full
</div>
要在特定的斷點處控制元素的最小寬度,請在任何現(xiàn)有的最小寬度功能類前添加 ?{screen}:
? 前綴。
<div class="w-24 min-w-full md:min-w-0 ...">
<!-- ... -->
</div>
關(guān)于 Tailwind 的響應(yīng)式設(shè)計功能的更多信息,請查看 響應(yīng)式設(shè)計 文檔。
在您的 ?tailwind.config.js
? 文件的 ?theme.minWidth
? 部分定制 Tailwind 的默認最小寬度。
// tailwind.config.js
module.exports = {
theme: {
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
}
}
}
在 主題自定義文檔 中了解更多關(guān)于自定義默認主題的信息。
默認情況下, 針對 min-width 功能類,只生成 responsive 變體。
您可以通過修改您的 ?tailwind.config.js
? 文件中的 ?variants
?部分中的 ?minWidth
?屬性來控制為 min-width 功能生成哪些變體。
例如,這個配置也將生成 hover and focus 變體:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
minWidth: ['hover', 'focus'],
}
}
}
如果您不打算在您的項目中使用 min-width 功能,您可以通過在配置文件的 ?corePlugins
?部分將 ?minWidth
?屬性設(shè)置為 ?false
? 來完全禁用它們:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
minWidth: false,
}
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: