HTML做table怎样用style加css边框,同时改变字体颜色?

<!DOCTYPE html>
<html>
<head>
	<title>有边框的table</title>
	<meta http-equiv="Content-Type" content="text\html; charset=utf-8">
	<style type="text/css">
	table tr td,th{border:1px solid #000;}
	</style>
	<style>
	span{color; red;
		}
		</style>
</head>
<body>
<h1>各班成绩</h1>
<table summary="">
	<tr>
		<th><span>班级</span></th>
		<th><span>学生数</span></th>
		<th><span>平均成绩</span></th>
	</tr>
	<tr>
		<td>一班</td>
		<td>30</td>
		<td>89</td>
	</tr>
	<tr>
	    <td>二班</td>
	    <td>35</td>
	    <td>85</td>
	</tr>
	<tr>
		<td>三班</td>
		<td>32</td>
		<td>80</td>
	</tr>
</table>
</body>
</html>

我猜这样但是只能显示边框,字的颜色没有变。请问应该怎样同时做到加边框和变颜色。谢谢

慕粉1152304073
浏览 2534回答 1
1回答

Kit_G

如果是针对所有的边框和文字进行颜色修改的话,可以直接输入:<style type="text/css">table{border:1px solid #eee;  color:#aaa; }</style>
打开App,查看更多内容
随时随地看视频慕课网APP