Tailwind CSS on GitHub

Justify Items

用于控制网格项目如何沿其内联轴对齐的功能类。

Default class reference

Class
Properties
justify-items-startjustify-items: start;
justify-items-endjustify-items: end;
justify-items-centerjustify-items: center;
justify-items-stretchjustify-items: stretch;

Auto

使用 justify-items-auto 在其内联轴上自动对网格项目进行调整。

1
2
3
4
5
6
<div class="grid justify-items-auto ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>5</div>
  <div>6</div>
</div>

Start

使用 justify-items-start 使网格项目沿内联轴的起点排列。

1
2
3
4
5
6
<div class="grid justify-items-start ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>5</div>
  <div>6</div>
</div>

End

使用 justify-items-start 使网格项目沿内联轴的终点排列。

1
2
3
4
5
6
<div class="grid justify-items-end ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>5</div>
  <div>6</div>
</div>

Center

使用 justify-items-center 使风格项目沿着他们的内联轴对齐。

1
2
3
4
5
6
<div class="grid justify-items-center ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>5</div>
  <div>6</div>
</div>

Stretch

使用 justify-items-stretch 沿其内联轴拉伸项目。

1
2
3
4
5
6
<div class="grid justify-items-stretch ...">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>5</div>
  <div>6</div>
</div>

响应式

要在特定的断点处对 flex 项目应用 justify 功能类,请在任何现有的功能类前添加 {screen}: 前缀。例如,使用 md:justify-items-center 来仅在中等尺寸以上的屏幕应用 justify-items-center 功能类。

<div class="justify-items-start md:justify-items-center">
  <!-- ... -->
</div>

关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。

定制

变体

默认情况下, 针对 justify-items 功能类,只生成 responsive 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 justifyItems 属性来控制为 justify-items 功能生成哪些变体。

例如,这个配置将生成 hover and focus 变体:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       justifyItems: ['hover', 'focus'],
      }
    }
  }

禁用

如果您不打算在您的项目中使用 justify-items 功能,您可以通过在配置文件的 corePlugins 部分将 justifyItems property to false in the corePlugins section of your config file:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     justifyItems: false,
    }
  }