布局
用于控制元素周围内容封装的工具。
¥Basic usage
¥Clearing left-floated elements
使用 clear-left
工具将元素放置在任何前面的左浮动元素下方。
¥Use the clear-left
utility to position an element below any preceding left-floated elements.
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="path/to/image.jpg">
<img class="float-right ..." src="path/to/image.jpg">
<p class="clear-left ...">Maybe we can live without libraries...</p>
</article>
¥Clearing right-floated elements
使用 clear-right
工具将元素放置在任何前面的右浮动元素下方。
¥Use the clear-right
utility to position an element below any preceding right-floated elements.
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="path/to/image.jpg">
<img class="float-right ..." src="path/to/image.jpg">
<p class="clear-right ...">Maybe we can live without libraries...</p>
</article>
¥Clearing all floated elements
使用 clear-both
工具将元素放置在所有前面的浮动元素下方。
¥Use the clear-both
utility to position an element below all preceding floated elements.
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="path/to/image.jpg">
<img class="float-right ..." src="path/to/image.jpg">
<p class="clear-both ...">Maybe we can live without libraries...</p>
</article>
¥Disabling applied clears
使用 clear-none
工具重置应用于元素的任何清除。这是 clear 属性的默认值。
¥Use the clear-none
utility to reset any clears that are applied to an element. This is the default value for the clear property.
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="path/to/image.jpg">
<img class="float-right ..." src="path/to/image.jpg">
<p class="clear-none ...">Maybe we can live without libraries...</p>
</article>
¥Using logical properties
使用 clear-start
或 clear-end
逻辑属性,它们根据文本方向映射到左侧或右侧。
¥Use the clear-start
or clear-end
logical properties, which map to either the left or right side based on the text direction.
ربما يمكننا العيش بدون مكتبات، أشخاص مثلي ومثلك. ربما. بالتأكيد، نحن أكبر من أن نغير العالم، ولكن ماذا عن ذلك الطفل الذي يجلس ويفتح كتابًا الآن في أحد فروع المكتبة المحلية ويجد رسومات للتبول والبول على القطة في القبعة والإخوة الصينيون الخمسة؟ ألا يستحق الأفضل؟ ينظر. إذا كنت تعتقد أن الأمر يتعلق بالغرامات المتأخرة والكتب المفقودة، فمن الأفضل أن تفكر مرة أخرى. يتعلق الأمر بحق ذلك الطفل في قراءة كتاب دون أن يتشوه عقله! أو: ربما يثيرك هذا يا سينفيلد؛ ربما هذه هي الطريقة التي تحصل بها على ركلاتك. أنت ورفاقك الطيبين.
<article dir="rtl">
<img class="float-start ..." src="path/to/image.jpg">
<img class="float-end ..." src="path/to/image.jpg">
<p class="clear-end ...">...ربما يمكننا العيش بدون مكتبات،</p>
</article>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:clear-none
仅在 hover 时应用 clear-none
工具。
<p class="clear-left hover:clear-none">
<!-- ... -->
</p>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:clear-none
仅在中等屏幕尺寸及以上时应用 clear-none
工具。
<p class="clear-left md:clear-none">
<!-- ... -->
</p>