Флексбокс и Сетка
Утилиты для управления выравниванием отдельного элемента сетки по его встроенной оси.
Используйте justify-self-auto
для выравнивания элемента на основе значения свойства сетки justify-items
:
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-auto ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
Используйте justify-self-start
, чтобы выровнять элемент сетки относительно начала его встроенной оси:
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-start ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
Используйте justify-self-center
, чтобы выровнять элемент сетки по центру его встроенной оси:
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-center ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
Используйте justify-self-end
, чтобы выровнять элемент сетки до конца его встроенной оси:
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-end ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
Используйте justify-self-stretch
, чтобы растянуть элемент сетки, чтобы заполнить область сетки на его встроенной оси:
<div class="grid justify-items-start ...">
<!-- ... -->
<div class="justify-self-stretch ...">02</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:justify-self-end
to only apply the justify-self-end
utility on hover.
<div class="justify-self-start hover:justify-self-end">
<!-- ... -->
</div>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:justify-self-end
to apply the justify-self-end
utility at only medium screen sizes and above.
<div class="justify-self-start md:justify-self-end">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.