CSS 子网格:打造完美对齐的布局

掌握 CSS 子网格的高级技巧,创建完美对齐的复杂布局。

一、子网格概述

作为一名把代码当散文写的 UI 匠人,我对 CSS 子网格有着独特的见解。子网格是 CSS Grid 的强大扩展,它允许子元素继承父元素的网格轨道,实现更精确的对齐。从简单的卡片布局到复杂的仪表板,子网格为我们提供了一套全新的布局工具。就像设计师手里的对齐工具一样,子网格让布局更加精确和一致。

二、基础子网格

1. 基础用法

/* 父网格容器 */
.parent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding: 20px;
}

/* 子网格容器 */
.child-grid {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
}

/* 子网格项 */
.subgrid-item {
  background-color: #667eea;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

2. 行子网格

/* 行子网格 */
.row-subgrid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}

.row-subgrid-child {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  gap: inherit;
}

.row-subgrid-item {
  background-color: #764ba2;
  color: white;
  padding: 20px;
  border-radius: 8px;
}

3. 列子网格

/* 列子网格 */
.column-subgrid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.column-subgrid-child {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
}

.column-subgrid-item {
  background-color: #f093fb;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

三、高级子网格

1. 双向子网格

/* 双向子网格 */
.bidirectional-subgrid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  padding: 20px;
}

.bidirectional-subgrid-child {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  gap: inherit;
}

.bidirectional-subgrid-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

2. 嵌套子网格

/* 嵌套子网格 */
.nested-subgrid-level-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.nested-subgrid-level-2 {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
  padding: 20px;
  background-color: #e0e0e0;
  border-radius: 8px;
}

.nested-subgrid-level-3 {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
  padding: 20px;
  background-color: #c0c0c0;
  border-radius: 4px;
}

.nested-subgrid-item {
  background-color: #667eea;
  color: white;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
}

3. 子网格与命名区域

/* 子网格与命名区域 */
.named-area-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "header header header"
    "sidebar main main";
  gap: 20px;
}

.named-area-child {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  grid-template-areas: subgrid;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  gap: inherit;
}

.header {
  grid-area: header;
  background-color: #667eea;
  color: white;
  padding: 20px;
  border-radius: 8px;
}

.sidebar {
  grid-area: sidebar;
  background-color: #764ba2;
  color: white;
  padding: 20px;
  border-radius: 8px;
}

.main {
  grid-area: main;
  background-color: #f093fb;
  color: white;
  padding: 20px;
  border-radius: 8px;
}

四、实战案例

1. 产品卡片布局

/* 产品卡片布局 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto auto auto;
  gap: 24px;
  padding: 24px;
}

.product-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: inherit;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-info {
  padding: 16px;
}

.product-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 16px 16px;
}

.product-price {
  font-size: 24px;
  font-weight: bold;
  color: #667eea;
}

.product-button {
  padding: 8px 16px;
  background-color: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-button:hover {
  background-color: #764ba2;
}

2. 表单布局

/* 表单布局 */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 20px;
}

.form-group {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: inherit;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.form-button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-button-primary {
  background-color: #667eea;
  color: white;
}

.form-button-primary:hover {
  background-color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.form-button-secondary {
  background-color: #f5f5f5;
  color: #333;
}

.form-button-secondary:hover {
  background-color: #e0e0e0;
}

3. 仪表板布局

/* 仪表板布局 */
.dashboard-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 80px auto;
  grid-template-areas:
    "sidebar header"
    "sidebar main";
  min-height: 100vh;
}

.dashboard-sidebar {
  grid-area: sidebar;
  background-color: #333;
  color: white;
  padding: 24px;
}

.dashboard-header {
  grid-area: header;
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-main {
  grid-area: main;
  padding: 24px;
  background-color: #f5f5f5;
}

.dashboard-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
}

.stat-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.dashboard-charts {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
  margin-top: 20px;
}

.chart-card {
  grid-column: span 2;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-card-full {
  grid-column: 1 / -1;
}

.chart-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.chart-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

4. 图片画廊

/* 图片画廊 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
  padding: 24px;
}

.gallery-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  gap: inherit;
}

.gallery-item-1x1 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-2x1 {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item-1x2 {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
}

.gallery-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.gallery-description {
  font-size: 14px;
  opacity: 0.8;
}

五、性能优化

  1. 合理使用子网格:只在需要的场景中使用子网格
  2. 避免过度嵌套:避免过深的嵌套层级
  3. 使用 auto-fit/auto-fill:创建响应式布局
  4. 测试性能:在不同设备上测试子网格性能
  5. 提供回退方案:为不支持的浏览器提供回退
/* 性能优化 */
.optimized-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* 回退方案 */
@supports not (grid-template-columns: subgrid) {
  .subgrid-fallback {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

六、最佳实践

  1. 保持简洁:避免过度复杂的子网格结构
  2. 有意义:子网格应该有明确的布局目的
  3. 一致:保持子网格风格一致
  4. 响应式:确保子网格在不同设备上正常工作
  5. 测试:在不同设备和浏览器上测试

七、浏览器兼容性

CSS 子网格在现代浏览器中得到了广泛支持,包括:

  • Chrome 117+
  • Firefox 71+
  • Safari 16+
  • Edge 117+

对于不支持的浏览器,可以使用常规的 Grid 布局作为回退方案。

八、总结

CSS 子网格是现代前端开发的强大工具,它可以让布局更加精确和一致。通过掌握子网格的高级技巧,我们可以创建出完美对齐的复杂布局。作为一名 UI 匠人,我建议在项目中合理使用子网格,让布局更加精确和美观。


子网格让布局像精密仪器一样精确,每个元素都在它应该在的位置。

#css #subgrid #grid #frontend #layout

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐