Display

    Block

    Use to create a block-level element.

    Flow-Root

    Use flow-root to create a block-level element with its own block formatting context.

    Display - 图2

    1. <div class="space-y-4">
    2. <div class="flow-root ...">
    3. <div class="my-4 ...">1</div>
    4. </div>
    5. <div class="flow-root ...">
    6. <div class="my-4 ...">2</div>
    7. </div>
    8. </div>

    Inline Block

    Use inline-block to create an inline block-level element.

    1. <div class="space-x-4 ...">
    2. <div class="inline-block ...">1</div>
    3. <div class="inline-block ...">3</div>
    4. </div>

    Use inline to create an inline element.

    Display - 图4

    1. <div>
    2. <div class="inline ...">1</div>
    3. <div class="inline ...">2</div>
    4. <div class="inline ...">3</div>
    5. </div>

    Flex

    Use flex to create a block-level flex container.

    Inline Flex

    Use inline-flex to create an inline flex container.

    1. <div class="inline-flex space-x-4 ...">
    2. <div class="flex-1 ...">1</div>
    3. <div class="flex-1 ...">2</div>
    4. <div class="flex-1 ...">3</div>
    5. </div>

    Grid

    Use grid to create a grid container.

    Display - 图7

    1. <div class="grid gap-4 grid-cols-3">
    2. </div>

    Use inline-grid to create an inline grid container.

    1. <span class="inline-grid grid-cols-3 gap-x-4">
    2. <span>1</span>
    3. <span>1</span>
    4. <span>1</span>
    5. </span>
    6. <span class="inline-grid grid-cols-3 gap-x-4">
    7. <span>2</span>
    8. <span>2</span>
    9. <span>2</span>
    10. </span>

    Contents

    Use contents to create a “phantom” container whose children act like direct children of the parent..

    Display - 图9

    Table

    Use the table, .table-row, .table-cell, .table-caption, .table-column, .table-column-group, .table-header-group, table-row-group, and .table-footer-group utilities to create elements that behave like their respective table elements.

    1. <div class="table w-full ...">
    2. <div class="table-row">
    3. <div class="table-cell ...">A cell with more content</div>
    4. <div class="table-cell ...">Cell 2</div>
    5. <div class="table-cell ...">Cell 3</div>
    6. </div>
    7. <div class="table-row">
    8. <div class="table-cell ...">A cell with more content</div>
    9. <div class="table-cell ...">Cell 6</div>
    10. </div>
    11. </div>
    12. </div>

    Hidden

    Use hidden to set an element to display: none and remove it from the page layout (compare with .invisible from the visibility documentation).

    1. <div class="flex ...">
    2. <div class="hidden ...">1</div>
    3. <div>2</div>
    4. <div>3</div>
    5. </div>

    To control the display property of an element at a specific breakpoint, add a {screen}: prefix to any existing display utility class. For example, use md:inline-flex to apply the inline-flex utility at only medium screen sizes and above.

    1. <div class="flex md:inline-flex ...">
    2. <!-- ... -->
    3. </div>

    For more information about Tailwind’s responsive design features, check out the documentation.

    Customizing

    By default, only responsive variants are generated for display utilities.

    You can control which variants are generated for the display utilities by modifying the display property in the variants section of your tailwind.config.js file.

    For example, this config will also generate hover and focus variants:

    Disabling

    If you don’t plan to use the display utilities in your project, you can disable them entirely by setting the display property to false in the corePlugins section of your config file:

    1. // tailwind.config.js
    2. module.exports = {
    3. corePlugins: {
    4. // ...
    5. + display: false,

    ←Box Sizing