引言:表格布局在现代Web设计中的重要性

表格布局是Web开发中最基础却也最强大的工具之一。从早期的HTML表格布局到现代的CSS Grid和Flexbox,表格布局经历了巨大的演变。在当今多设备、多屏幕尺寸的时代,选择正确的表格布局方案对于创建优秀的用户体验至关重要。

表格布局不仅仅是展示数据的工具,它还被广泛应用于页面结构、表单设计、定价页面、产品对比等场景。理解不同类型的表格布局及其适用场景,能够帮助开发者和设计师做出更明智的决策。

一、基础表格布局类型

1.1 传统HTML表格布局

传统的HTML表格布局是Web早期最常用的布局方式。虽然现在不推荐用于整体页面布局,但在展示结构化数据时仍然非常有用。

<!-- 基础HTML表格示例 -->
<table border="1">
  <thead>
    <tr>
      <th>产品名称</th>
      <th>价格</th>
      <th>库存</th>
      <th>评分</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>笔记本电脑</td>
      <td>$899</td>
      <td>45</td>
      <td>4.5/5</td>
    </tr>
    <tr>
      <td>智能手机</td>
      <td>$699</td>
      <td>120</td>
      <td>4.7/5</td>
    </tr>
    <tr>
      <td>平板电脑</td>
      <td>$499</td>
      <td>78</td>
      <td>4.3/5</td>
    </tr>
  </tbody>
</table>

优点:

  • 语义化清晰,易于理解
  • 原生支持表头、表体、表尾
  • 屏幕阅读器友好
  • 无需额外CSS即可呈现基本样式

缺点:

  • 灵活性差,难以自定义样式
  • 响应式支持有限
  • 不适合复杂布局

1.2 CSS增强表格布局

通过CSS,我们可以大幅提升表格的视觉表现和功能性。

/* 现代化表格样式 */
.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.modern-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modern-table th,
.modern-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.modern-table tbody tr:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.modern-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.modern-table tbody tr:last-child td {
  border-bottom: none;
}

/* 响应式处理 */
@media screen and (max-width: 600px) {
  .modern-table {
    font-size: 14px;
  }
  
  .modern-table th,
  .modern-table td {
    padding: 8px 10px;
  }
}

二、CSS Grid布局:现代表格布局的首选

CSS Grid是现代Web布局的革命性技术,它提供了二维布局系统,特别适合创建复杂的表格布局。

2.1 Grid基础概念

Grid布局通过定义网格容器和网格项来工作:

/* Grid容器定义 */
.grid-container {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 100px 80px;
  grid-template-rows: auto;
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

/* 网格项基础样式 */
.grid-item {
  background: white;
  padding: 12px;
  font-family: Arial, sans-serif;
}

/* 表头样式 */
.grid-header {
  background: #2c3e50;
  color: white;
  font-weight: bold;
  position: sticky;
  top: 0;
}

/* 交替行样式 */
.grid-row:nth-child(even) .grid-item {
  background: #f8f9fa;
}

/* 悬停效果 */
.grid-row:hover .grid-item {
  background: #e9ecef;
}
<!-- Grid表格结构 -->
<div class="grid-container">
  <!-- 表头 -->
  <div class="grid-item grid-header">产品名称</div>
  <div class="grid-item grid-header">类别</div>
  <div class="grid-item grid-header">价格</div>
  <div class="grid-item grid-header">库存</div>
  <div class="grid-item grid-header">状态</div>
  
  <!-- 数据行 -->
  <div class="grid-row" style="display: contents;">
    <div class="grid-item">MacBook Pro 16"</div>
    <div class="grid-item">笔记本电脑</div>
    <div class="grid-item">$2,499</div>
    <div class="grid-item">23</div>
    <div class="grid-item">✅</div>
  </div>
  
  <div class="grid-row" style="display: contents;">
    <div class="grid-item">iPhone 15 Pro</div>
    <div class="grid-item">智能手机</div>
    <div class="grid-item">$999</div>
    <div class="grid-item">67</div>
    <div class="grid-item">✅</div>
  </div>
  
  <div class="grid-row" style="display: contents;">
    <div class="grid-item">iPad Air</div>
    <div class="grid-item">平板电脑</div>
    <div class="grid-item">$599</div>
    <div class="grid-item">0</div>
    <div class="grid-item">❌</div>
  </div>
</div>

2.2 高级Grid表格功能

2.2.1 固定列宽和自适应

/* 混合固定和自适应列 */
.grid-advanced {
  display: grid;
  /* 第一列固定200px,第二列自适应,第三列固定100px */
  grid-template-columns: 200px 1fr 100px;
  gap: 0;
}

/* 最小最大列宽控制 */
.grid-responsive {
  display: grid;
  /* 列宽至少150px,最多250px,自动填充 */
  grid-template-columns: repeat(auto-fill, minmax(150px, 250px));
  gap: 10px;
}

2.2.2 跨行跨列实现复杂布局

/* 跨列示例 */
.grid-merged-cells {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}

.header-merged {
  grid-column: 1 / -1; /* 从第一列到最后一列 */
  background: #34495e;
  color: white;
  text-align: center;
  font-weight: bold;
}

.sub-header {
  grid-column: span 2; /* 跨2列 */
  background: #7f8c8d;
  color: white;
}
<div class="grid-merged-cells">
  <div class="header-merged">季度销售报告</div>
  
  <div class="sub-header">产品A</div>
  <div class="sub-header">产品B</div>
  
  <div class="grid-item">Q1: $45,000</div>
  <div class="grid-item">Q1: $32,000</div>
  <div class="grid-item">Q2: $52,000</div>
  <div class="grid-item">Q2: $38,000</div>
</div>

三、Flexbox布局:一维表格布局方案

虽然Flexbox主要用于一维布局,但在某些表格场景下也非常有用,特别是当表格需要在水平或垂直方向上灵活排列时。

3.1 Flexbox表格基础

.flex-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.flex-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.flex-row:last-child {
  border-bottom: none;
}

.flex-cell {
  flex: 1;
  padding: 12px;
  min-width: 0; /* 防止内容溢出 */
}

/* 表头特殊样式 */
.flex-header {
  background: #3498db;
  color: white;
  font-weight: bold;
  position: sticky;
  top: 0;
}

/* 不同列宽控制 */
.flex-cell:nth-child(1) { flex: 2; } /* 第一列更宽 */
.flex-cell:nth-child(2) { flex: 1; }
.flex-cell:nth-child(3) { flex: 1; }
.flex-cell:nth-child(4) { flex: 0 0 80px; } /* 固定宽度 */
<div class="flex-table">
  <div class="flex-row flex-header">
    <div class="flex-cell">员工姓名</div>
    <div class="flex-cell">部门</div>
    <div class="flex-cell">职位</div>
    <div class="flex-cell">薪资</div>
  </div>
  
  <div class="flex-row">
    <div class="flex-cell">张三</div>
    <div class="flex-cell">技术部</div>
    <div class="flex-cell">高级工程师</div>
    <div class="flex-cell">¥25,000</div>
  </div>
  
  <div class="flex-row">
    <div class="flex-cell">李四</div>
    <div class="flex-cell">市场部</div>
    <div class="flex-cell">营销经理</div>
    <div class="flex-cell">¥18,000</div>
  </div>
</div>

3.2 Flexbox响应式处理

/* 移动端堆叠显示 */
@media screen and (max-width: 768px) {
  .flex-table {
    border: none;
  }
  
  .flex-row {
    flex-direction: column;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .flex-header {
    display: none; /* 隐藏表头,使用data-label */
  }
  
  .flex-cell {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
  }
  
  .flex-cell:last-child {
    border-bottom: none;
  }
  
  /* 使用data-label属性显示列名 */
  .flex-cell::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
    color: #333;
  }
}
<!-- 响应式Flexbox表格 -->
<div class="flex-table">
  <div class="flex-row flex-header">
    <div class="flex-cell">产品名称</div>
    <div class="flex-cell">价格</div>
    <div class="flex-cell">库存</div>
    <div class="flex-cell">操作</div>
  </div>
  
  <div class="flex-row">
    <div class="flex-cell" data-label="产品名称">MacBook Pro</div>
    <div class="flex-cell" data-label="价格">$2,499</div>
    <div class="flex-cell" data-label="库存">15</div>
    <div class="flex-cell" data-label="操作">
      <button>购买</button>
    </div>
  </div>
</div>

四、响应式表格设计策略

4.1 水平滚动策略

对于列数较多的表格,水平滚动是最简单的响应式方案:

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 平滑滚动 */
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
}

.table-scroll table {
  min-width: 800px; /* 最小宽度保证可读性 */
  width: 100%;
  border-collapse: collapse;
}

/* 自定义滚动条样式 */
.table-scroll::-webkit-scrollbar {
  height: 8px;
}

.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}
<div class="table-scroll">
  <table>
    <thead>
      <tr>
        <th>订单编号</th>
        <th>客户名称</th>
        <th>产品详情</th>
        <th>数量</th>
        <th>单价</th>
        <th>总价</th>
        <th>订单日期</th>
        <th>状态</th>
        <th>操作</th>
      </tr>
    </thead>
    <tbody>
      <!-- 大量数据行 -->
    </tbody>
  </table>
</div>

4.2 列隐藏策略

在小屏幕上隐藏次要列,只保留关键信息:

.responsive-hide-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-hide-table th,
.responsive-hide-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

/* 默认显示所有列 */
.hide-col { display: table-cell; }

/* 平板隐藏2列 */
@media screen and (max-width: 1024px) {
  .hide-col:nth-child(4),
  .hide-col:nth-child(5) {
    display: none;
  }
}

/* 手机只显示3列 */
@media screen and (max-width: 768px) {
  .hide-col:nth-child(3),
  .hide-col:nth-child(4),
  .hide-col:nth-child(5),
  .hide-col:nth-child(6) {
    display: none;
  }
  
  .hide-col:nth-child(1)::before {
    content: "订单号: ";
    font-weight: bold;
  }
  
  .hide-col:nth-child(2)::before {
    content: "客户: ";
    font-weight: bold;
  }
  
  .hide-col:nth-child(7)::before {
    content: "日期: ";
    font-weight: bold;
  }
}

4.3 卡片堆叠策略

将表格行转换为卡片式布局:

.card-stack-table {
  width: 100%;
}

.card-stack-table thead {
  display: none;
}

.card-stack-table tr {
  display: block;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-stack-table td {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  text-align: right;
}

.card-stack-table td:last-child {
  border-bottom: none;
}

.card-stack-table td::before {
  content: attr(data-label);
  font-weight: bold;
  text-align: left;
  margin-right: 10px;
  color: #333;
}

/* 为不同状态添加视觉提示 */
.card-stack-table td[data-label="状态"] {
  font-weight: bold;
}

.card-stack-table td[data-label="状态"]:contains("已完成") {
  color: #27ae60;
}

.card-stack-table td[data-label="状态"]:contains("处理中") {
  color: #f39c12;
}

.card-stack-table td[data-label="状态"]:contains("已取消") {
  color: #e74c3c;
}
<table class="card-stack-table">
  <thead>
    <tr>
      <th>订单号</th>
      <th>客户</th>
      <th>金额</th>
      <th>状态</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td data-label="订单号">ORD-001</td>
      <td data-label="客户">张三</td>
      <td data-label="金额">¥1,250</td>
      <td data-label="状态">已完成</td>
    </tr>
    <tr>
      <td data-label="订单号">ORD-002</td>
      <td data-label="客户">李四</td>
      <td data-label="金额">¥890</td>
      <td data-label="状态">处理中</td>
    </tr>
  </tbody>
</table>

五、高级响应式技术

5.1 使用CSS媒体查询的多策略组合

/* 综合响应式表格系统 */
.smart-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.smart-table th,
.smart-table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

/* 桌面端:标准表格 */
@media screen and (min-width: 1024px) {
  .smart-table {
    /* 标准样式 */
  }
}

/* 平板端:减少列数 */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .smart-table .optional-col {
    display: none;
  }
  
  .smart-table {
    font-size: 14px;
  }
}

/* 移动端:卡片式 */
@media screen and (max-width: 767px) {
  .smart-table {
    border: none;
    background: transparent;
  }
  
  .smart-table thead {
    display: none;
  }
  
  .smart-table tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .smart-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    text-align: right;
  }
  
  .smart-table td:last-child {
    border-bottom: none;
  }
  
  .smart-table td::before {
    content: attr(data-label);
    font-weight: bold;
    text-align: left;
    color: #555;
  }
}

5.2 JavaScript增强的响应式表格

// 响应式表格增强插件
class ResponsiveTable {
  constructor(tableElement, options = {}) {
    this.table = tableElement;
    this.options = {
      breakpoint: 768,
      cardView: true,
      ...options
    };
    
    this.init();
  }
  
  init() {
    this.createToggleButtons();
    this.handleResize();
    this.addSearchFilter();
    
    window.addEventListener('resize', () => this.handleResize());
  }
  
  // 创建列显示/隐藏切换按钮
  createToggleButtons() {
    const headerRow = this.table.querySelector('thead tr');
    if (!headerRow) return;
    
    const controlBar = document.createElement('div');
    controlBar.className = 'table-controls';
    controlBar.style.cssText = 'margin-bottom: 10px; display: flex; gap: 5px; flex-wrap: wrap;';
    
    const headers = headerRow.querySelectorAll('th');
    headers.forEach((th, index) => {
      const btn = document.createElement('button');
      btn.textContent = th.textContent;
      btn.className = 'toggle-btn';
      btn.style.cssText = 'padding: 5px 10px; border: 1px solid #ccc; background: white; cursor: pointer; border-radius: 3px;';
      
      btn.addEventListener('click', () => {
        this.toggleColumn(index);
        btn.style.background = btn.style.background === 'rgb(200, 200, 200)' ? 'white' : '#c8c8c8';
      });
      
      controlBar.appendChild(btn);
    });
    
    this.table.parentNode.insertBefore(controlBar, this.table);
  }
  
  // 切换列显示/隐藏
  toggleColumn(colIndex) {
    const rows = this.table.querySelectorAll('tr');
    rows.forEach(row => {
      const cell = row.children[colIndex];
      if (cell) {
        const currentDisplay = window.getComputedStyle(cell).display;
        cell.style.display = currentDisplay === 'none' ? '' : 'none';
      }
    });
  }
  
  // 处理窗口大小变化
  handleResize() {
    const width = window.innerWidth;
    
    if (width < this.options.breakpoint && this.options.cardView) {
      this.enableCardView();
    } else {
      this.disableCardView();
    }
  }
  
  // 启用卡片视图
  enableCardView() {
    if (this.table.classList.contains('card-view-active')) return;
    
    this.table.classList.add('card-view-active');
    const rows = this.table.querySelectorAll('tbody tr');
    
    rows.forEach(row => {
      const cells = row.querySelectorAll('td');
      cells.forEach((cell, index) => {
        const header = this.table.querySelector(`th:nth-child(${index + 1})`);
        if (header) {
          cell.setAttribute('data-label', header.textContent);
          cell.style.display = 'flex';
          cell.style.justifyContent = 'space-between';
          cell.style.padding = '8px 12px';
          cell.style.borderBottom = '1px solid #f0f0f0';
        }
      });
      
      row.style.display = 'block';
      row.style.marginBottom = '10px';
      row.style.border = '1px solid #ddd';
      row.style.borderRadius = '4px';
      row.style.background = 'white';
    });
    
    const thead = this.table.querySelector('thead');
    if (thead) thead.style.display = 'none';
  }
  
  // 禁用卡片视图
  disableCardView() {
    if (!this.table.classList.contains('card-view-active')) return;
    
    this.table.classList.remove('card-view-active');
    const rows = this.table.querySelectorAll('tbody tr');
    
    rows.forEach(row => {
      const cells = row.querySelectorAll('td');
      cells.forEach(cell => {
        cell.removeAttribute('data-label');
        cell.style.display = '';
        cell.style.justifyContent = '';
        cell.style.padding = '';
        cell.style.borderBottom = '';
      });
      
      row.style.display = '';
      row.style.marginBottom = '';
      row.style.border = '';
      row.style.borderRadius = '';
      row.style.background = '';
    });
    
    const thead = this.table.querySelector('thead');
    if (thead) thead.style.display = '';
  }
  
  // 添加搜索过滤功能
  addSearchFilter() {
    const searchInput = document.createElement('input');
    searchInput.type = 'text';
    searchInput.placeholder = '搜索表格内容...';
    searchInput.style.cssText = 'width: 100%; padding: 8px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box;';
    
    searchInput.addEventListener('input', (e) => {
      const searchTerm = e.target.value.toLowerCase();
      const rows = this.table.querySelectorAll('tbody tr');
      
      rows.forEach(row => {
        const text = row.textContent.toLowerCase();
        row.style.display = text.includes(searchTerm) ? '' : 'none';
      });
    });
    
    this.table.parentNode.insertBefore(searchInput, this.table);
  }
}

// 使用示例
document.addEventListener('DOMContentLoaded', () => {
  const table = document.querySelector('.smart-table');
  if (table) {
    new ResponsiveTable(table, {
      breakpoint: 768,
      cardView: true
    });
  }
});

5.3 纯CSS实现的响应式表格(无JavaScript)

/* 纯CSS响应式表格 - 使用checkbox hack */
.responsive-css-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-css-table th,
.responsive-css-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

/* 隐藏checkbox */
.responsive-css-table input[type="checkbox"] {
  display: none;
}

/* 移动端优化 */
@media screen and (max-width: 768px) {
  .responsive-css-table {
    border: none;
  }
  
  .responsive-css-table thead {
    display: none;
  }
  
  .responsive-css-table tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
  }
  
  .responsive-css-table td {
    display: flex;
    justify-content: space-between;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 12px;
  }
  
  .responsive-css-table td:last-child {
    border-bottom: none;
  }
  
  .responsive-css-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
  }
}

/* 桌面端显示所有列 */
@media screen and (min-width: 769px) {
  .responsive-css-table td::before {
    content: none;
  }
}

六、选择最适合的布局方案

6.1 决策流程图

graph TD
    A[开始选择布局方案] --> B{数据列数}
    B -->|≤3列| C{屏幕尺寸}
    B -->|≥4列| D{需要复杂交互?}
    
    C -->|桌面| E[Flexbox/Grid]
    C -->|移动| F[卡片堆叠]
    
    D -->|是| G[CSS Grid + JS增强]
    D -->|否| H{数据量}
    
    H -->|小(<20行)| I[水平滚动]
    H -->|中/大| J[列隐藏 + 卡片]
    
    E --> K[最终方案]
    F --> K
    G --> K
    I --> K
    J --> K

6.2 具体场景推荐

场景1:产品对比表(3-5列,桌面为主)

推荐方案:CSS Grid + 响应式列隐藏

/* 产品对比表专用样式 */
.product-comparison {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.product-comparison .cell {
  background: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.product-comparison .header {
  background: #2c3e50;
  color: white;
  font-weight: bold;
  justify-content: center;
}

.product-comparison .feature-name {
  font-weight: bold;
  background: #ecf0f1;
}

@media screen and (max-width: 768px) {
  .product-comparison {
    grid-template-columns: 120px 1fr;
  }
  
  .product-comparison .header:not(:first-child),
  .product-comparison .cell:not(.feature-name):not(:nth-child(2)) {
    display: none;
  }
}

场景2:数据报表(10+列,需要完整数据)

推荐方案:水平滚动 + 固定表头

/* 数据报表样式 */
.report-table-container {
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.report-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}

.report-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #34495e;
  color: white;
}

.report-table th,
.report-table td {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  text-align: right;
}

.report-table th:first-child,
.report-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 5;
  border-right: 2px solid #2c3e50;
}

/* 滚动指示器 */
.report-table-container::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 20px;
  color: rgba(0,0,0,0.5);
}

场景3:移动端订单列表(多设备适配)

推荐方案:智能卡片堆叠 + 搜索过滤

/* 移动优先的订单列表 */
.order-list {
  width: 100%;
}

.order-list thead {
  display: none;
}

.order-list tr {
  display: block;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  overflow: hidden;
}

.order-list td {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #f5f5f5;
  text-align: right;
}

.order-list td:last-child {
  border-bottom: none;
}

.order-list td::before {
  content: attr(data-label);
  font-weight: bold;
  color: #555;
}

/* 状态指示器 */
.order-list td[data-label="状态"] {
  font-weight: bold;
}

.order-list td[data-label="状态"]:contains("已发货") {
  color: #27ae60;
  background: #e8f5e9;
}

.order-list td[data-label="状态"]:contains("待处理") {
  color: #f39c12;
  background: #fff3e0;
}

/* 桌面端增强 */
@media screen and (min-width: 768px) {
  .order-list {
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .order-list thead {
    display: table-header-group;
    background: #2c3e50;
    color: white;
  }
  
  .order-list tr {
    display: table-row;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
  }
  
  .order-list td {
    display: table-cell;
    justify-content: normal;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .order-list td::before {
    content: none;
  }
  
  .order-list tr:hover {
    background: #f5f5f5;
  }
}

七、性能优化与最佳实践

7.1 大数据量表格优化

// 虚拟滚动实现 - 处理10万+行数据
class VirtualScrollTable {
  constructor(container, data, rowHeight = 40) {
    this.container = container;
    this.data = data;
    this.rowHeight = rowHeight;
    this.visibleRows = Math.ceil(container.clientHeight / rowHeight) + 2;
    
    this.init();
  }
  
  init() {
    // 创建容器
    this.viewport = document.createElement('div');
    this.viewport.style.cssText = `
      position: relative;
      height: ${this.data.length * this.rowHeight}px;
      overflow-y: auto;
    `;
    
    this.content = document.createElement('div');
    this.content.style.cssText = `
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
    `;
    
    this.viewport.appendChild(this.content);
    this.container.appendChild(this.viewport);
    
    // 绑定滚动事件
    this.viewport.addEventListener('scroll', () => this.render());
    
    // 初始渲染
    this.render();
  }
  
  render() {
    const scrollTop = this.viewport.scrollTop;
    const startIndex = Math.floor(scrollTop / this.rowHeight);
    const endIndex = Math.min(startIndex + this.visibleRows, this.data.length);
    
    // 更新内容位置
    this.content.style.transform = `translateY(${startIndex * this.rowHeight}px)`;
    
    // 生成HTML
    let html = '';
    for (let i = startIndex; i < endIndex; i++) {
      const row = this.data[i];
      html += `
        <div style="height: ${this.rowHeight}px; border-bottom: 1px solid #eee; display: flex; align-items: center; padding: 0 10px;">
          <span style="flex: 1;">${row.name}</span>
          <span style="flex: 1;">${row.value}</span>
          <span style="flex: 1;">${row.date}</span>
        </div>
      `;
    }
    
    this.content.innerHTML = html;
  }
}

// 使用示例
const data = Array.from({length: 100000}, (_, i) => ({
  name: `项目 ${i}`,
  value: Math.floor(Math.random() * 1000),
  date: new Date(2024, 0, i + 1).toLocaleDateString()
}));

const container = document.getElementById('virtual-table');
new VirtualScrollTable(container, data);

7.2 无障碍访问(A11Y)最佳实践

<!-- 无障碍表格示例 -->
<table class="accessible-table" role="table" aria-label="2024年季度销售数据">
  <caption>2024年各产品线季度销售数据汇总</caption>
  
  <thead role="rowgroup">
    <tr role="row">
      <th role="columnheader" scope="col" id="col-product">产品线</th>
      <th role="columnheader" scope="col" id="col-q1">Q1</th>
      <th role="columnheader" scope="col" id="col-q2">Q2</th>
      <th role="columnheader" scope="col" id="col-q3">Q3</th>
      <th role="columnheader" scope="col" id="col-q4">Q4</th>
      <th role="columnheader" scope="col" id="col-total">总计</th>
    </tr>
  </thead>
  
  <tbody role="rowgroup">
    <tr role="row">
      <th role="rowheader" scope="row">笔记本电脑</th>
      <td role="cell" headers="col-product col-q1">$45,000</td>
      <td role="cell" headers="col-product col-q2">$52,000</td>
      <td role="cell" headers="col-product col-q3">$48,000</td>
      <td role="cell" headers="col-product col-q4">$61,000</td>
      <td role="cell" headers="col-product col-total">$206,000</td>
    </tr>
    <tr role="row">
      <th role="rowheader" scope="row">智能手机</th>
      <td role="cell" headers="col-product col-q1">$78,000</td>
      <td role="cell" headers="col-product col-q2">$85,000</td>
      <td role="cell" headers="col-product col-q3">$92,000</td>
      <td role="cell" headers="col-product col-q4">$105,000</td>
      <td role="cell" headers="col-product col-total">$360,000</td>
    </tr>
  </tbody>
  
  <tfoot role="rowgroup">
    <tr role="row">
      <th role="columnheader" scope="col">总计</th>
      <td role="cell" headers="col-q1">$123,000</td>
      <td role="cell" headers="col-q2">$137,000</td>
      <td role="cell" headers="col-q3">$140,000</td>
      <td role="cell" headers="col-q4">$166,000</td>
      <td role="cell" headers="col-total">$566,000</td>
    </tr>
  </tfoot>
</table>
/* 无障碍表格样式 */
.accessible-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.accessible-table caption {
  caption-side: top;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 0;
  color: #333;
}

.accessible-table th,
.accessible-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.accessible-table thead {
  background: #2c3e50;
  color: white;
}

.accessible-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.accessible-table tbody tr:hover {
  background: #e3f2fd;
}

/* 键盘导航高亮 */
.accessible-table th:focus,
.accessible-table td:focus {
  outline: 3px solid #0066cc;
  outline-offset: -3px;
}

/* 屏幕阅读器专用 - 可视化隐藏 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

7.3 打印样式优化

/* 打印样式 */
@media print {
  /* 隐藏不必要的元素 */
  .no-print {
    display: none !important;
  }
  
  /* 确保表格在打印时完整显示 */
  .print-table {
    width: 100% !important;
    page-break-inside: auto;
    border: 1px solid #000 !important;
  }
  
  .print-table tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  
  .print-table thead {
    display: table-header-group;
    position: static;
  }
  
  /* 强制打印背景色(如果浏览器支持) */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  /* 优化字体和间距 */
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .print-table td,
  .print-table th {
    padding: 6px 8px;
    border: 1px solid #000 !important;
  }
}

八、总结与决策指南

8.1 快速决策表

场景特征 推荐方案 关键技术 注意事项
3-5列,桌面为主 Grid布局 CSS Grid 注意浏览器兼容性
10+列,数据完整 水平滚动 overflow-x 添加滚动指示器
移动端优先 卡片堆叠 媒体查询 确保data-label属性
大数据量(10k+) 虚拟滚动 JavaScript 需要计算行高
需要交互 JS增强 JS + CSS 考虑性能影响
无障碍要求高 语义化表格 ARIA属性 测试屏幕阅读器

8.2 最终建议

  1. 优先考虑CSS Grid:对于现代浏览器,Grid提供了最灵活的表格布局方案
  2. 移动优先设计:从移动端开始设计,逐步增强到大屏幕
  3. 渐进增强:确保基础功能在所有设备上可用,再添加高级功能
  4. 性能意识:大数据量时考虑虚拟滚动或分页
  5. 无障碍优先:始终使用语义化HTML和适当的ARIA属性
  6. 测试多设备:在真实设备上测试,而不仅仅是模拟器

通过合理选择和组合这些布局方案,你可以创建出既美观又实用的表格,为用户提供最佳的数据浏览体验。记住,没有一种方案适用于所有场景,关键在于理解每种方案的优缺点,并根据具体需求做出明智的选择。