在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
今天校招笔试题要求实现一个首行首列固定,宽度自适应窗口变化,但窗口缩小到一定宽度不能再缩小,出现水平滚动条… 先了解几个概念: table-layout: table-layout属性有两种特定值: position : sticky 粘性定位可以被认为是相对定位和固定定位的混合。元素在跨越特定阈值前为相对定位,之后为固定定位。 实现: 1.自适应 .box { width: 100%; height: 200px; background-color: #eee; overflow: auto; margin: 10px; } 表格table, 宽度100%, 设置一个最小宽度,我这里设置1000px,这个根据个人设定哈 table { width: 100%; min-width: 1000px; /* 自定义宽度要设置成fixed */ table-layout: fixed; /* 设置单元格间距 */ border-spacing:0; } 2.固定首行首列 thead tr th { /* th设置粘性定位 */ background-color: pink; position: sticky; top: 0; /* 顶部border */ border-top: 1px solid black; } 首列设置 td:first-child { /* td第一个粘性定位 */ position: sticky; left: 0; background-color: skyblue; } 如果需要改变单元格宽度,需要设置table-layout: fixed td:first-child,th:first-child { /* 设置首列200 ,设置th才有效,这里加上td主要是为了设置Border*/ width: 200px; border-left: 1px solid black; } 还有一个注意地方是 边框border,要单独设定每个单元格边框border, 如果border collapse,滚动会跟着动,效果不好看。 整体代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> * { padding: 0; margin: 0; } .box { width: 100%; height: 200px; background-color: #eee; overflow: auto; margin: 10px; } table { width: 100%; min-width: 1000px; /* 自定义宽度要设置成fixed */ table-layout: fixed; /* 设置单元格间距 */ border-spacing:0; } td,th { border-bottom: 1px solid black; border-right: 1px solid black; box-sizing: border-box; /* 超出长度显示 ... */ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } td:first-child,th:first-child { /* 设置首列200 ,设置th才有效*/ width: 200px; border-left: 1px solid black; } /* 如果border collapse,滚动会跟着动,所以单独给每个元素设置border */ td:last-child, th:last-child { border-right: 1px solid black; } th:last-child, td:last-child { border-right: 1px solid black; } .last td { /* 最后一行底部border */ border-bottom: 1px solid black; } thead tr th { /* th设置粘性定位 */ background-color: pink; position: sticky; top: 0; /* 顶部border */ border-top: 1px solid black; } td:first-child { /* td第一个粘性定位 */ position: sticky; left: 0; background-color: skyblue; } thead tr th:first-child { /* 第一个由于要保持上下和左右滚动都不被覆盖,设置在最上面 */ z-index: 1; left: 0; } </style> </head> <body> <div class="box"> <table > <thead> <tr> <th>姓名</th> <th>学号</th> <th>年龄</th> <th>成绩</th> <th>爱好</th> </tr> </thead> <tbody> <tr> <td>可乐11111111111111111111111111111111111111111111111111111111</td> <td>可乐11111111</td> <td>可乐222222222</td> <td>可乐333333333333333333333333333</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> <tr class="last"> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> <td>可乐</td> </tr> </tbody> </table> </div> </body> </html> 效果:(做的还不是很好,继续加油) 到此这篇关于CSS实现表格首行首列固定和自适应窗口的实例代码的文章就介绍到这了,更多相关css实现表格首行首列固定内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论