博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS打造固定表头
阅读量:4971 次
发布时间:2019-06-12

本文共 7451 字,大约阅读时间需要 24 分钟。

html代码:

    
表头固定内容滚动
序号 账户名称 账户编号
1 中国电信 12312312313132
1 中国电信 12312312313132
1 中国电信 12312312313132
1 中国电信 12312312313132
1 中国电信 12312312313132
序号 姓名 年龄 地址
001
小明
23
上海
001
小明
23
上海
001
小明
23
上海
001
小明
23
上海
001
小明
23
上海
Item ID
Product
List Price
Unit Cost
Attribute
EST-1
FI-SW-01
36.5
10
Large
EST-1
FI-SW-01
36.5
10
Large
EST-1
FI-SW-01
36.5
10
Large
EST-1
FI-SW-01
36.5
10
Large
EST-1
FI-SW-01
36.5
10
Large
EST-1
FI-SW-01
36.5
10
Large
EST-1
FI-SW-01
36.5
10
Large

CSS代码:

@charset "utf-8";.tableWrap{    width:600px;    box-sizing: border-box;}.table-thead{    width:auto;    font-size: 14px;    background-color: #FFF;    border: 1px solid #CFCFCF;    border-collapse: collapse;    border-spacing: 0px;}.table-thead tr th{    text-align: left;    padding-left:10px;    border-right:1px solid #CFCFCF;}.table-thead tr th:last-child, .table-thead tr th:nth-last-child(2){    border-right:0;}.table-thead tr, .table-tbody tr{    height:35px;}.table-tbody{    width:auto;    font-size: 14px;    background-color: #FFF;    border-left:1px solid #CFCFCF;    border-collapse: collapse;    border-spacing: 0px;}.table-tbody tr{    border-bottom:1px solid #CFCFCF;}.table-tbody tr:last-child{    border-bottom: 0;}.table-tbody tr td{    padding-left:10px;    padding-right:10px;    border-right:1px solid #CFCFCF;}.comTbody{    width:auto;    display: inline-block;    max-height:100px;    overflow-y: scroll;    border-bottom: 1px solid #CFCFCF;}.table-wrap{    width:550px;    outline: none;    position: relative;    font-size: 14px;    color:#444;    border: 1px #e6e6e6 solid;    margin-bottom: 30px;}.table-head{    padding-right:17px;    background-color: #FAFAFA;    border-bottom: 1px #e6e6e6 solid;}.table-head-wrap{    width:100%;    position: relative;    overflow: hidden;}.grid{    margin: 0px;    table-layout: fixed;    width: 100%;    max-width: none;    border-spacing: 0px;    empty-cells: show;    border-width: 0px;    outline: 0px none;    border-collapse: collapse;}.grid tr th{    padding: 0.929em 0.5em;    vertical-align: bottom;    overflow: hidden;    border-left: 1px #e6e6e6 solid;    font-weight: normal;    white-space: nowrap;    text-overflow: ellipsis;    text-align: left;}.grid tr th:first-child{    border-left-width: 0;}.grid tr td{    border-left: 1px #e6e6e6 solid;    border-bottom: 1px #e6e6e6 solid;    padding: 0.929em 0.5em;    overflow: hidden;    line-height: 1.6em;    vertical-align: middle;    text-overflow: ellipsis;}.grid tr td:first-child{    border-left-width: 0px;}.grid tr:last-child td{    border-bottom: none;}.tab-link{    display: block;    min-height: 18px;    line-height: 18px;    overflow: hidden;    text-overflow: ellipsis;}.table-content{    height:221px;    white-space: normal;    position: relative;    width: 100%;    overflow-x: auto;    overflow-y: scroll;    min-height: 0;}.data-grid{    width: 698px;    height: 201px;    position: relative;    overflow: hidden;    font-size: 14px;    color:#444;    box-sizing: border-box;    border-color: #95B8E7;    border-width: 1px;    border-style: solid;}.data-view{    width: 698px;    position: absolute;    overflow: hidden;    top: 0px;    right: 0px;}.grid-head{    width: 698px;    height: 30px;    border-color: #DDD;    overflow: hidden;    cursor: default;    border-width: 0px 0px 1px;    border-style: solid;    background-color:#efefef;}.grid-head-inner{    display: block;    float: left;}.data-table{    height: 30px;    border-collapse: separate;}.data-table-row{    height: 30px;}.data-table td{    border-color: #CCC;    border-width: 0px 1px 1px 0px;    border-style: dotted;    margin: 0px;    padding: 0px;    line-height: 1.65em;}.datagrid-cell{    margin: 0px;    padding: 0px 4px;    white-space: nowrap;    word-wrap: normal;    overflow: hidden;    height: 18px;    line-height: 18px;    font-size: 12px;}.cell-c1{    width:79px;    height:auto;}.cell-c2{    width:99px;    height:auto;}.cell-c3{    width:85px;    height:auto;    text-align: right;}.cell-c4{    width:100px;    height:auto;    text-align: right;}.cell-c5{    width:200px;    height:auto;}.grid-body{    width: 698px;    height: 168px;    overflow-x: hidden;    margin: 0px;    padding: 0px;}.datagrid-btable{    border-collapse: separate;}.datagrid-btable tr{    height:25px;}.datagrid-btable tr td{    border-color: #CCC;    border-width: 0px 1px 1px 0px;    border-style: dotted;    margin: 0px;    padding: 0px;}

 

转载于:https://www.cnblogs.com/leijing0607/p/8376465.html

你可能感兴趣的文章
Jmeter实现dubbo接口压测
查看>>
更改mac系统语言及其软件
查看>>
Binary compatibility 二进制兼容
查看>>
SQL-删除重复数据
查看>>
8.8.3 抽象类
查看>>
IOS网络请求框架AFNetworking和ASIHttpRequest对比
查看>>
中国顶级黑客,马云天价请不动
查看>>
2019 Multi-University Training Contest 4
查看>>
修改AD FS
查看>>
C函数篇(strcat函数)
查看>>
洛谷 P1337 [JSOI2004]平衡点 / 吊打XXX
查看>>
苹果的AR赌注仍然有很多需要证明的
查看>>
spring mvc 的配置 及interceptor filter listener servlet 配置
查看>>
C# Path 有关于文件路径等问题类(转)
查看>>
虚拟机安装禅道
查看>>
Python 常用函数
查看>>
WebApi简单使用
查看>>
Spring Boot的配置文件
查看>>
计算可迭代对象的shape 老是忘~方便记法
查看>>
PHP学习笔记四【类型运算】
查看>>