1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <style>
- .user-list {
- width: 500px;
- margin: 0 auto;
- box-shadow: 0 0 2px 5px #ccc;
- border-radius: 4px;
- padding: 10px;
- }
- .user-list table {
- border-collapse: collapse;
- width: 100%;
- }
- .user-list table tr {
- border-top: 1px solid #dedede;
- height: 32px;
- line-height: 32px;
- text-align: left;
- }
- .user-list table thead tr:first-child {
- border: none;
- }
- .user-list table td,
- .user-list table th {
- padding-left: 10px;
- }
- .avatar {
- width: 30px;
- height: 30px;
- border-radius: 50%;
- }
- </style>
- </head>
- <body>
- <div class="user-list">
- <table>
- <!-- thead标签给table定义表头 -->
- <thead>
- <tr>
- <th>头像</th>
- <th>姓名</th>
- <th>密码</th>
- <th>年龄</th>
- <th>性别</th>
- </tr>
- </thead>
- <tbody id="listBody">
- <!-- 动态添加数据 -->
- </tbody>
- </table>
- </div>
- <script src="1.js"></script>
- </body>
- </html>
|