详解table设置表格有滚动条实例

零下一度
发布: 2017-06-24 10:22:57
原创
3156人浏览过

table 设置表格有滚动条。

少说多做,代码中有注释:

 1 <!DOCTYPE HTML> 
 <html> 
 <head> 
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6         
 <title>设置表格有滚动条</title> 7         
 <style> 8             
 * { 9                 margin: 0;                 
 padding: 0;11             }
              table {               
              /*设置相邻单元格的边框间的距离*/                 
              border-spacing: 0;16                 /*表格设置合并边框模型*/          
                    border-collapse: collapse;18                 
                    text-align: center;19             }          
                    /*关键设置 tbody出现滚动条*/21             table tbody {   
                                  display: block;23                 
                                  height: 80px;               
                                  overflow-y: scroll;25             }
                                           table thead,            
                                           tbody tr {
                                                        
                                                        display: table;30                 width: 100%;31     
                                                                   
                                                        table-layout: fixed;32             }33             /*关键设置:滚动条默认宽度是16px 将thead的宽度减16px*/34             table thead {35                 width: calc( 100% - 1em)36             }37             38             39             table thead th {40                 background: #ccc;41             }42             43         </style>44     </head>45 46     <body>47         <table width="80%" border="1">48             <thead>49                 <tr>50                     <th>姓名</th>51                     <th>年龄</th>52                     <th>出生年月</th>53                     <th>手机号码</th>54                     <th>单位</th>55                 </tr>56             </thead>57             <tbody>58                 <tr>59                     <td>张三</td>60                     <td>18</td>61                     <td>1990-9-9</td>62                     <td>13682299090</td>63                     <td>阿里巴巴</td>64                 </tr>65                 <tr>66                     <td>李四</td>67                     <td>18</td>68                     <td>1990-9-9</td>69                     <td>13682299090</td>70                     <td>阿里巴巴与四十大盗</td>71                 </tr>72                 <tr>73                     <td>王五</td>74                     <td>18</td>75                     <td>1990-9-9</td>76                     <td>13682299090</td>77                     <td>腾讯科技</td>78                 </tr>79                 <tr>80                     <td>孟想</td>81                     <td>18</td>82                     <td>1990-9-9</td>83                     
                                                        <td>13682299090</td>
                                                                            
                                                        <td>浏阳河就业</td>85                 
                                                        </tr>86             
                                                        </tbody>87         
                                                        </table>88     </body>89 90 </html>
登录后复制

效果:

Grammarly
Grammarly

Grammarly是一款在线语法纠正和校对工具,伟大的AI辅助写作工具

Grammarly 253
查看详情 Grammarly

 

以上就是详解table设置表格有滚动条实例的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号