用html设计一个好看的表格
时间: 2023-09-10 15:15:09 浏览: 100
TABLE表格-旧版HTML和HTML5网页设计
好的,以下是一个基本的html表格代码,你可以根据自己的需求进行修改和美化。
```html
<table>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>25</td>
<td>男</td>
</tr>
<tr>
<td>李四</td>
<td>30</td>
<td>女</td>
</tr>
<tr>
<td>王五</td>
<td>20</td>
<td>男</td>
</tr>
</tbody>
</table>
```
你可以在`<style>`标签中添加样式来美化这个表格,比如:
```html
<style>
table {
border-collapse: collapse;
width: 100%;
text-align: center;
font-family: Arial, sans-serif;
}
th, td {
border: 1px solid #ccc;
padding: 10px;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
tr:hover {
background-color: #e6f7ff;
}
</style>
```
这个样式会让表格更加美观,包括边框、背景色、居中对齐等等。你可以根据自己的喜好和实际需求进行修改。
阅读全文