写一个好看的HTML表格的CSS
时间: 2024-06-05 08:08:32 浏览: 184
当然,我会为您提供编写一个好看的HTML表格的CSS的建议。以下是一个基本的表格样式:
table {
border-collapse: collapse;
width: 100%;
max-width: 700px;
margin: auto;
text-align: left;
font-size: 16px;
}
table tr:nth-child(odd) {
background-color: #f9f9f9;
}
table th,
table td {
padding: 15px;
border: 1px solid #ddd;
}
table th {
background-color: #4CAF50;
color: white;
}
在上面的代码中,我们设置了一个具有良好结构和易于阅读的表格样式。表格的边框已经通过 border-collapse: collapse; 去除了。表格的宽度已经设置为100%,并且使用 margin: auto; 居中。字体大小也已经设置为16px,建议根据需要进行更改。
表格的行背景颜色在奇数行中设置为 #f9f9f9。每个单元格都具有15像素的填充和1像素的边框。表头被设置为绿色 (#4CAF50) 背景和白色字体。
希望这能够帮助您编写一个漂亮的HTML表格。
相关问题
html+css 写一个表格
好的,我可以帮你。你可以使用HTML和CSS编写一个表格。以下是一个基本的示例:
HTML代码:
```
<table>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
<tr>
<td>张三</td>
<td>25</td>
<td>男</td>
</tr>
<tr>
<td>李四</td>
<td>30</td>
<td>女</td>
</tr>
</table>
```
CSS代码:
```
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
```
我希望这可以帮助你创建一个表格。
用html+css写一个表格
好的,以下是一个简单的 HTML 和 CSS 表格的代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>表格示例</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #ddd;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<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>28</td>
<td>男</td>
</tr>
</tbody>
</table>
</body>
</html>
```
这个表格包含了一个表头和三行数据,每行数据包含了三列:姓名、年龄和性别。CSS 样式定义了表格的边框、行间隔、列宽和表头背景色等。
阅读全文