6 6

Home  >  Article  >  Web Front-end  >  Detailed explanation of table setting table with scroll bar example

Detailed explanation of table setting table with scroll bar example

零下一度
零下一度Original
2017-06-24 10:22:572801browse

table Set the table to have scroll bars.

Less talk, more action, there are comments in the code:

 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>

Effect:

The above is the detailed content of Detailed explanation of table setting table with scroll bar example. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn