一个简单的HTML table样式

<!DOCTYPE html>
<html>
<head>
	<title>My Table Style</title>
	<style>
		table {
			font-family: Arial, sans-serif;
			border-collapse: collapse;
			width: 100%;
			border: 1px solid #ddd;
		}
		
		th, td {
			text-align: left;
			padding: 8px;
			border: 1px solid #ddd;
		}
		
		tr:nth-child(even) {
			background-color: #f2f2f2;
		}
		
		th {
			background-color: #4CAF50;
			color: white;
		}
		
		caption {
			font-weight: bold;
			font-size: 1.2em;
			padding: 10px;
			background-color: #ddd;
			border: 1px solid #ddd;
		}
	</style>
</head>
<body>
	<table>
		<caption>My Table</caption>
		<thead>
			<tr>
				<th>Column 1</th>
				<th>Column 2</th>
				<th>Column 3</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>Row 1, Cell 1</td>
				<td>Row 1, Cell 2</td>
				<td>Row 1, Cell 3</td>
			</tr>
			<tr>
				<td>Row 2, Cell 1</td>
				<td>Row 2, Cell 2</td>
				<td>Row 2, Cell 3</td>
			</tr>
			<tr>
				<td>Row 3, Cell 1</td>
				<td>Row 3, Cell 2</td>
				<td>Row 3, Cell 3</td>
			</tr>
		</tbody>
	</table>
</body>
</html>

在这里插入图片描述

在这个样式中,表格具有以下特点:

  • 字体使用 Arial 和 sans-serif 字体。
  • 表格边框合并,宽度占据 100%。
  • 表头和表格内容单元格具有统一的样式和间距。
  • 奇数行背景颜色为 #f2f2f2。
  • 表头背景颜色为 #4CAF50,字体颜色为白色。
  • 表格标题具有粗体和大字体样式,带有背景颜色和边框。
    你可以将这个样式应用到你的 HTML table 中,或者根据需要进行修改和定制。
  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值