CSS代码:好看的表格样式
时间: 2023-07-02 19:08:53 浏览: 162
一些漂亮的CSS表格样式
4星 · 用户满意度95%
以下是一个简单的CSS代码示例,可以实现一些漂亮的表格样式:
```css
table {
border-collapse: collapse;
width: 100%;
max-width: 800px;
margin: 0 auto;
font-size: 16px;
font-weight: bold;
text-align: center;
}
th, td {
padding: 10px;
border: 2px solid #ddd;
}
th {
background-color: #f2f2f2;
color: #333;
}
tr:nth-child(even) td {
background-color: #f2f2f2;
}
tr:hover td {
background-color: #ddd;
}
```
这段代码将表格的边框合并,设置了表格的宽度、字体大小和对齐方式,并且给表头和每个单元格添加了一些样式。其中,偶数行的单元格背景色为浅灰色,鼠标悬停时单元格背景色会变为淡灰色。你可以根据自己的需求进行调整。
阅读全文