菜鸟-创作你的创作

CSS place-items: center解析与用法详解

好的,阿杰,我给你整理一份 place-items: center 的完整解析与用法,并结合实战示例说明它在 CSS 布局中的作用。


CSS place-items: center 解析与用法

1️⃣ 概念

当只写一个值时,会同时应用到 align-itemsjustify-items


2️⃣ 作用范围


3️⃣ 语法示例

基本居中

<div class="grid">
  <div class="item">内容</div>
</div>

<style>
.grid {
  display: grid;
  width: 300px;
  height: 200px;
  background: #f0f0f0;
  place-items: center; /* 横向+纵向居中 */
  border: 1px solid #ccc;
}
.item {
  background: #4caf50;
  color: white;
  padding: 20px;
  border-radius: 8px;
}
</style>

效果.item.grid水平和垂直同时居中


单独控制对齐

/* 纵向顶部 + 横向居中 */
.grid {
  display: grid;
  place-items: start center;
}


对比 align-items / justify-items

/* 等价写法 */
.grid {
  display: grid;
  align-items: center;   /* 纵向居中 */
  justify-items: center; /* 横向居中 */
}

/* 使用 place-items */
.grid {
  display: grid;
  place-items: center;   /* 简写等效 */
}

place-items 是简写属性,减少重复书写,提高可读性。


4️⃣ 进阶应用

多单元格布局

<div class="grid-2x2">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
</div>

<style>
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  grid-template-rows: repeat(2, 100px);
  place-items: center; /* 每个单元格内容居中 */
  gap: 10px;
  background: #eee;
}
.grid-2x2 div {
  background: #2196f3;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
</style>

效果:每个格子里的内容都在 中心位置


5️⃣ 总结与建议

属性作用适用场景
place-items简写 align-items + justify-items,控制单元格中内容对齐Grid 布局,单元格居中或自定义对齐
align-items纵向对齐Grid/Flexbox
justify-items横向对齐Grid

最佳实践

退出移动版