1. 布局
  2. 清除浮动

布局

清除

用于控制内容包裹在元素周围的实用工具。

ClassStyles
clear-left
clear: left;
clear-right
clear: right;
clear-both
clear: both;
clear-start
clear: inline-start;
clear-end
clear: inline-end;
clear-none
clear: none;

示例

清除左侧

使用 clear-left 工具将元素放置在任何前面的左浮动元素下方:

Maybe we can live without libraries, people like you and me. Maybe. Sure, we're too old to change the world, but what about that kid, sitting down, opening a book, right now, in a branch at the local library and finding drawings of pee-pees and wee-wees on the Cat in the Hat and the Five Chinese Brothers? Doesn't HE deserve better? Look. If you think this is about overdue fines and missing books, you'd better think again. This is about that kid's right to read a book without getting his mind warped! Or: maybe that turns you on, Seinfeld; maybe that's how y'get your kicks. You and your good-time buddies.

<article>
<img class="float-left ..." src="/img/snow-mountains.jpg" />
<img class="float-right ..." src="/img/green-mountains.jpg" />
<p class="clear-left ...">也许我们可以不依赖图书馆...</p>
</article>

清除右侧

使用 clear-right 工具将元素放置在任何前面的右浮动元素下方:

Maybe we can live without libraries, people like you and me. Maybe. Sure, we're too old to change the world, but what about that kid, sitting down, opening a book, right now, in a branch at the local library and finding drawings of pee-pees and wee-wees on the Cat in the Hat and the Five Chinese Brothers? Doesn't HE deserve better? Look. If you think this is about overdue fines and missing books, you'd better think again. This is about that kid's right to read a book without getting his mind warped! Or: maybe that turns you on, Seinfeld; maybe that's how y'get your kicks. You and your good-time buddies.

<article>
<img class="float-left ..." src="/img/green-mountains.jpg" />
<img class="float-right ..." src="/img/snow-mountains.jpg" />
<p class="clear-right ...">也许我们可以不依赖图书馆...</p>
</article>

清除所有

使用 clear-both 工具将元素放置在所有前面的浮动元素下方:

Maybe we can live without libraries, people like you and me. Maybe. Sure, we're too old to change the world, but what about that kid, sitting down, opening a book, right now, in a branch at the local library and finding drawings of pee-pees and wee-wees on the Cat in the Hat and the Five Chinese Brothers? Doesn't HE deserve better? Look. If you think this is about overdue fines and missing books, you'd better think again. This is about that kid's right to read a book without getting his mind warped! Or: maybe that turns you on, Seinfeld; maybe that's how y'get your kicks. You and your good-time buddies.

<article>
<img class="float-left ..." src="/img/snow-mountains.jpg" />
<img class="float-right ..." src="/img/green-mountains.jpg" />
<p class="clear-both ...">也许我们可以不依赖图书馆...</p>
</article>

使用逻辑属性

使用 clear-startclear-end 工具,这两者使用 逻辑属性 根据文本方向映射到左侧或右侧:

ربما يمكننا العيش بدون مكتبات، أشخاص مثلي ومثلك. ربما. بالتأكيد، نحن أكبر من أن نغير العالم، ولكن ماذا عن ذلك الطفل الذي يجلس ويفتح كتابًا الآن في أحد فروع المكتبة المحلية ويجد رسومات للتبول والبول على القطة في القبعة والإخوة الصينيون الخمسة؟ ألا يستحق الأفضل؟ ينظر. إذا كنت تعتقد أن الأمر يتعلق بالغرامات المتأخرة والكتب المفقودة، فمن الأفضل أن تفكر مرة أخرى. يتعلق الأمر بحق ذلك الطفل في قراءة كتاب دون أن يتشوه عقله! أو: ربما يثيرك هذا يا سينفيلد؛ ربما هذه هي الطريقة التي تحصل بها على ركلاتك. أنت ورفاقك الطيبين.

<article dir="rtl">
<img class="float-left ..." src="/img/green-mountains.jpg" />
<img class="float-right ..." src="/img/green-mountains.jpg" />
<p class="clear-end ...">...ربما يمكننا العيش بدون مكتبات،</p>
</article>

禁用清除

使用 clear-none 工具重置应用于元素的任何清除:

Maybe we can live without libraries, people like you and me. Maybe. Sure, we're too old to change the world, but what about that kid, sitting down, opening a book, right now, in a branch at the local library and finding drawings of pee-pees and wee-wees on the Cat in the Hat and the Five Chinese Brothers? Doesn't HE deserve better? Look. If you think this is about overdue fines and missing books, you'd better think again. This is about that kid's right to read a book without getting his mind warped! Or: maybe that turns you on, Seinfeld; maybe that's how y'get your kicks. You and your good-time buddies.

<article>
<img class="float-left ..." src="/img/green-mountains.jpg" />
<img class="float-right ..." src="/img/snow-mountains.jpg" />
<p class="clear-none ...">也许我们可以不依赖图书馆...</p>
</article>

响应式设计

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

<p class="clear-left md:clear-none ...">
<!-- ... -->
</p>

Learn more about using variants in the variants documentation.