1. 尺寸
  2. 最大宽度

尺寸

最大宽度

设置元素最大宽度的工具类。

ClassStyles
max-w-<number>
max-width: calc(var(--spacing) * <number>);
max-w-<fraction>
max-width: calc(<fraction> * 100%);
max-w-3xs
max-width: var(--container-3xs); /* 16rem (256px) */
max-w-2xs
max-width: var(--container-2xs); /* 18rem (288px) */
max-w-xs
max-width: var(--container-xs); /* 20rem (320px) */
max-w-sm
max-width: var(--container-sm); /* 24rem (384px) */
max-w-md
max-width: var(--container-md); /* 28rem (448px) */
max-w-lg
max-width: var(--container-lg); /* 32rem (512px) */
max-w-xl
max-width: var(--container-xl); /* 36rem (576px) */
max-w-2xl
max-width: var(--container-2xl); /* 42rem (672px) */

例子

基本例子

使用 max-w-<number> 工具类,比如 max-w-24max-w-64,将元素设置为基于空间比例的固定最大宽度:

调整示例大小以查看预期行为

max-w-96
max-w-80
max-w-64
max-w-48
max-w-40
max-w-32
max-w-24
<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>

使用百分比

使用 max-w-fullmax-w-<fraction> 工具类,比如 max-w-1/2max-w-2/5,给元素设置基于百分比的最大宽度:

调整示例大小以查看预期行为

max-w-9/10
max-w-3/4
max-w-1/2
max-w-1/3
<div class="w-full max-w-9/10 ...">max-w-9/10</div>
<div class="w-full max-w-3/4 ...">max-w-3/4</div>
<div class="w-full max-w-1/2 ...">max-w-1/2</div>
<div class="w-full max-w-1/3 ...">max-w-1/3</div>

使用容器比例

使用如 max-w-smmax-w-xl 的工具类,将元素设置为基于容器比例的固定最大宽度:

调整示例大小以查看预期行为

安德鲁·阿尔弗雷德
旅行秘书助理
<div class="max-w-md ...">
<!-- ... -->
</div>

使用断点容器

使用 container 工具类将元素的最大宽度设置为当前断点的 min-width。如果你更喜欢针对固定的屏幕尺寸进行设计,而不是尝试适应完全流体的视口,这非常有用:

<div class="container">
<!-- ... -->
</div>

注意,与您可能在其他框架中使用的容器不同,Tailwind 的容器不会自动居中,并且没有任何内置的水平填充。使用 mx-autopx-<number> 工具类来添加这些:

<div class="container mx-auto px-4">
<!-- ... -->
</div>

使用自定义值

Use the max-w-[<value>] syntax to set the 最大宽度 based on a completely custom value:

<div class="max-w-[220px] ...">
<!-- ... -->
</div>

For CSS variables, you can also use the max-w-(<custom-property>) syntax:

<div class="max-w-(--my-max-width) ...">
<!-- ... -->
</div>

This is just a shorthand for max-w-[var(<custom-property>)] that adds the var() function for you automatically.

响应式设计

Prefix a max-width utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<div class="max-w-sm md:max-w-lg ...">
<!-- ... -->
</div>

Learn more about using variants in the variants documentation.

自定义你的主题

The max-w-<number> utilities are driven by the --spacing theme variable, which can be customized in your own theme:

@theme {
--spacing: 1px;
}

Learn more about customizing the spacing scale in the theme variable documentation.