Whitespace

    Utilities for controlling an element’s white-space property.

    Use to cause text to wrap normally within an element. Newlines and spaces will be collapsed.

    No Wrap

    Use whitespace-nowrap to prevent text from wrapping within an element. Newlines and spaces will be collapsed.

    Whitespace - 图2

    1. <div class="whitespace-nowrap ...">Hey everyone!
    2. It's almost 2022 and we still don't know if there is aliens living among us, or do we? Maybe the person writing this is an alien.
    3. You will never know.</div>
    4. </div>

    Pre Line

    Use whitespace-pre-line to preserve newlines but not spaces within an element. Text will be wrapped normally.

    Whitespace - 图4

    1. <div class="whitespace-pre-line ...">Hey everyone!
    2. It's almost 2022 and we still don't know if there is aliens living among us, or do we? Maybe the person writing this is an alien.
    3. </div>

    Use whitespace-pre-wrap to preserve newlines and spaces within an element. Text will be wrapped normally.

    Break Spaces

    Whitespace - 图6

    1. <div class="w-3/4 ...">
    2. <div class="whitespace-break-spaces ...">Hey everyone!
    3. It's almost 2022 and we still don't know if there is aliens living among us, or do we? Maybe the person writing this is an alien.
    4. You will never know.</div>
    5. </div>

    Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:whitespace-pre to only apply the whitespace-pre utility on hover.

    For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

    Breakpoints and media queries

    You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:whitespace-pre to apply the whitespace-pre utility at only medium screen sizes and above.

    1. <div class="whitespace-normal md:whitespace-pre">
    2. <!-- ... -->

    To learn more, check out the documentation on Responsive Design, and other media query modifiers.