css制作精美的表格
时间: 2024-01-26 19:07:41 浏览: 121
table CSS制作好看的网页表格
要制作一个精美的表格,你可以使用CSS来美化表格的外观。你可以使用以下代码作为参考:
```
<style type="text/css">
table.gridtable {
font-family: verdana, arial, sans-serif;
font-size: 11px;
color: #333333;
border-width: 1px;
border-color: #666666;
border-collapse: collapse;
}
table.gridtable th {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #dedede;
color: white;
height: 60px;
text-align: center;
font-size: 20px;
font-weight: lighter;
letter-spacing: 2px;
border-radius: 5px;
}
table.gridtable td {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #ffffff;
height: 30px;
text-align: center;
}
tbody {
font-size: 1em;
padding: 20px;
}
table tr:hover {
background-color: #CCDDFF;
}
</style>
<table class="gridtable">
<tr>
<th>Info Header 1</th>
<th>Info Header 2</th>
<th>Info Header 3</th>
</tr>
<tr>
<td>Text 1A</td>
<td>Text 1B</td>
<td>Text 1C</td>
</tr>
<tr>
<td>Text 2A</td>
<td>Text 2B</td>
<td>Text 2C</td>
</tr>
</table>
```
你可以将上述代码添加到你的HTML文件中,然后根据自己的需要修改表格中的内容和样式。这段代码使用了CSS样式来设置表格的边框、背景颜色、字体和对齐方式,从而使表格看起来更加精美和专业。
阅读全文