<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>HTML table表头固定</title>
<style>
.table{
border-collapse:collapse;
border-right: 1px solid #000000;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
text-align: center;
}
.table th {
border-left: 1px solid #000000;
border-bottom: 1px solid #000000;
}
.table td {
border-left: 1px solid #000000;
border-bottom: 1px solid #000000;
}
.table tbody {
display: block;
height: 100px;
overflow-y: scroll;
-webkit-overflow-scrolling: touch; // 为了滚动顺畅
}
.table thead, tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}
.table tbody::-webkit-scrollbar {
display: none; // 隐藏滚动条,不需要可取消
}
.table thead th {
background: #ccc;
}
</style>
</head>
<body>
<table class='table'>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>出生年月</th>
<th>手机号码</th>
<th>单位</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>18</td>
<td>1990-09-09</td>
<td>12312341234</td>
<td>阿里巴巴</td>
</tr>
<tr>
<td>李四</td>
<td>18</td>
<td>1992-12-08</td>
<td>12312341234</td>
<td>阿里巴巴与四十大盗</td>
</tr>
<tr>
<td>王五</td>
<td>18</td>
<td>2000-05-01</td>
<td>12312341234</td>
<td>腾讯科技</td>
</tr>
<tr>
<td>张三二</td>
<td>18</td>
<td>1994-01-25</td>
<td>12312341234</td>
<td>浏阳河就业</td>
</tr>
<tr>
<td>李四二</td>
<td>18</td>
<td>1990-9-9</td>
<td>12312341234</td>
<td>阿里巴巴</td>
</tr>
<tr>
<td>王五二</td>
<td>18</td>
<td>1990-9-9</td>
<td>12312341234</td>
<td>阿里巴巴</td>
</tr>
<tr>
<td>张大三</td>
<td>18</td>
<td>1990-9-9</td>
<td>12312341234</td>
<td>阿里巴巴</td>
</tr>
<tr>
<td>李大四</td>
<td>18</td>
<td>1990-9-9</td>
<td>12312341234</td>
<td>阿里巴巴</td>
</tr>
<tr>
<td>王大五</td>
<td>18</td>
<td>1990-9-9</td>
<td>12312341234</td>
<td>阿里巴巴</td>
</tr>
</tbody>
</table>
</body>
</html>
HTML table表头固定
转载请注明出处或者链接地址:https://www.qianduange.cn//article/5130.html
相关文章
-
npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.
-
FastJson 解析神器JsonPath 使用手册
-
VUE开发环境搭建
-
npm安装-详细教程
-
npm 不是内部或外部命令,也不是可运行的程序或批处理文件。
-
NPM与外部服务的集成(上)
-
降低npm版本
-
npm报错:request to https://registry.npm.taobao.org failed, reason certificate has expired
-
nvm管理node版本后npm、cnpm、pnpm不是内部或外部指令 解决方案
-
npm install报错解决记录
发布的文章
用js生成小米商城
2024-04-27 21:04:59
网页汇率计算器vue代码
2024-04-26 13:04:44
vue3绘制内容自动无缝滚动表格
2024-04-25 16:04:07
npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.
2024-04-20 17:04:38
vue里使用样式color: var(--Editor-text),已经定义了--Editor-text,但是却显示变量--Editor-text未定义,为啥
2024-04-25 08:04:19
wangEditor设置初始文字颜色
2024-04-23 15:04:38
Golang 使用 Gin 框架接收 HTTP Post 请求体中的 JSON 数据
2024-04-23 22:04:53
Python读写Json文件
2024-04-23 22:04:19
【头歌】——数据分析与实践-python-网络爬虫-Scrapy爬虫基础-网页数据解析-requests 爬虫-JSON基础
2024-04-23 22:04:19
ObjectMapper转化对象常用方法(转LIst、Map,以及Type、JavaType、constructType的学习)
2024-04-23 22:04:02
大家推荐的文章