Back to layout Classes

inline-block

Usage

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

Examples

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

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

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