纯CSS样式的表头固定

table {
width: 100%;
border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

thead th {
  position: sticky;
  top: 0;
  background-color: white;
}

#table-container {
  height: 800px;
  overflow-y: auto;
}
posted @ 2025-02-17 15:21  云水潇湘  阅读(15)  评论(0)    收藏  举报