html好看的表格模板
时间: 2023-09-01 20:12:57 浏览: 195
html好看的表格
以下是一个简单的HTML表格模板,你可以根据需要进行修改和美化:
```html
<table>
<thead>
<tr>
<th>表头1</th>
<th>表头2</th>
<th>表头3</th>
</tr>
</thead>
<tbody>
<tr>
<td>单元格1</td>
<td>单元格2</td>
<td>单元格3</td>
</tr>
<tr>
<td>单元格4</td>
<td>单元格5</td>
<td>单元格6</td>
</tr>
</tbody>
</table>
```
你可以通过CSS样式表来美化表格,例如:
```css
table {
border-collapse: collapse;
width: 100%;
max-width: 800px;
margin: 0 auto;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
color: #333;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
```
这些样式将会使表格看起来更加美观,你可以根据需要进行修改。
阅读全文