尺寸
用于设置元素最大宽度的实用程序。
使用 max-w-*
实用程序设置元素的最大宽度。
<div>
<div class="w-full max-w-96 ...">max-w-96</div>
<div class="w-full max-w-80 ...">max-w-80</div>
<div class="w-full max-w-64 ...">max-w-64</div>
<div class="w-full max-w-48 ...">max-w-48</div>
<div class="w-full max-w-40 ...">max-w-40</div>
<div class="w-full max-w-32 ...">max-w-32</div>
<div class="w-full max-w-24 ...">max-w-24</div>
</div>
在 24rem
以上,max-w-*
实用程序使用命名比例而不是数字比例,以使值更容易猜测。
<div class="max-w-md ...">
<!-- ... -->
</div>
max-w-prose
实用程序为元素提供一个针对可读性优化的最大宽度,并根据字体大小进行调整。
哦,是的。这是最好的部分。它很脆,很爆炸,是松饼从锅里脱落并开始自行发挥作用的地方。我告诉你。那是一个价值百万美元的想法。只要卖掉顶部就行了。
哦,是的。这是最好的部分。它很脆,很爆炸,是松饼从锅里脱落并开始自行发挥作用的地方。我告诉你。那是一个价值百万美元的想法。只要卖掉顶部就行了。
哦,是的。这是最好的部分。它很脆,很爆炸,是松饼从锅里脱落并开始自行发挥作用的地方。我告诉你。那是一个价值百万美元的想法。只要卖掉顶部就行了。
<div class="text-sm max-w-prose ...">
<p>Oh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.</p>
</div>
<div class="text-base max-w-prose ...">
<p>Oh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.</p>
</div>
<div class="text-xl max-w-prose ...">
<p>Oh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.</p>
</div>
max-w-screen-{断点}
类可以用来给元素设置一个与特定断点匹配的最大宽度。这些值会自动从你的 tailwind.config.js
文件的 theme.screens
部分 中获取。
<div class="max-w-screen-2xl">
<!-- ... -->
</div>
Tailwind 允许你使用变体修饰符在不同状态下条件应用实用程序类。例如,使用 hover:max-w-lg
仅在悬停时应用 max-w-lg
实用程序。
<div class="max-w-sm hover:max-w-lg">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看 悬停、聚焦和其他状态 文档。
您还可以使用变体修饰符来针对媒体查询,例如响应式断点、深色模式、首选减少运动等等。例如,使用 md:max-w-lg
仅在中等屏幕尺寸及以上应用 max-w-lg
实用程序。
<div class="max-w-sm md:max-w-lg">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、深色模式 和 其他媒体查询修饰符 的文档。
默认情况下,Tailwind 的最大宽度比例是 默认间距比例 以及一些特定于宽度的附加值的组合。
您可以通过编辑 tailwind.config.js
文件中的 theme.spacing
或 theme.extend.spacing
来自定义您的间距比例。
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
要单独自定义 max-width
,请使用 tailwind.config.js
文件的 theme.maxWidth
部分。
module.exports = {
theme: {
extend: {
maxWidth: {
'128': '32rem',
}
}
}
}
如果您需要使用一个不适合包含在主题中的 max-width
值,请使用方括号使用任何任意值动态生成属性。
<div class="max-w-[220px]">
<!-- ... -->
</div>
在 任意值 文档中了解有关任意值支持的更多信息。