Back to layout Classes

inline-flex

Usage

<div class="inline-flex">
  <!-- Your content here -->
</div>

Examples

Here are some examples of how to use the inline-flex class:

<!-- Basic usage -->
<div class="inline-flex">
  Content
</div>

<!-- With other classes -->
<div class="inline-flex p-4 bg-white">
  Content with padding and background
</div>