当前位置:首页 > 行业动态 > 正文

html表格左右如何固定

在HTML中,可以使用CSS来固定表格的左右位置,以下是一个简单的示例:

html表格左右如何固定  第1张

<!DOCTYPE html>
<html>
<head>
<style>
  .fixedtable {
    position: relative;
    width: 100%;
    border: 1px solid black;
  }
  .leftheader, .rightheader {
    position: sticky;
    backgroundcolor: white;
  }
  .leftheader {
    left: 0;
  }
  .rightheader {
    right: 0;
  }
</style>
</head>
<body>
<h2>使用CSS固定表格左右</h2>
<table >
  <thead>
    <tr>
      <th >左侧标题</th>
      <th>中间标题</th>
      <th >右侧标题</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>数据1</td>
      <td>数据2</td>
      <td>数据3</td>
    </tr>
    <!更多行数据 >
  </tbody>
</table>
</body>
</html>

在这个示例中,我们创建了一个名为.fixedtable的CSS类,用于设置表格的基本样式,我们为左侧和右侧的表头分别创建了.leftheader和.rightheader类,并使用position: sticky属性将它们固定在相应的位置,我们使用left和right属性设置表头的对齐方式。

0