<tr 设置背景色 怎么是一段一段的
<tr 设置背景色 怎么是一段一段的
html 代码:
XML/HTML code?<table style="width:100%;"> <tr style="background-color:rgb(220,220,220); height:30px; width:100%;"> <th style="font-size:12px;">图片</th> <th style="font-size:12px;">产品名称</th> <th style="font-size:12px;">价格</th> <th style="font-size:12px;">创建时间</th> <th style="font-size:12px;">操作</th> <th style="font-size:12px;">状态</th> </tr> ....... </table>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>单片机温度自动控制系统设计
<body>
<table style="width:100%;border-collapse:collapse" >
<tr style="background-color:rgb(220,220,220); height:30px; width:100%;">
<th style="font-size:12px;">图片</th>
<th style="font-size:12px;">产品名称</th>
<th style="font-size:12px;">价格</th>
<th style="font-size:12px;">创建时间</th>
<th style="font-size:12px;">操作</th>
<th style="font-size:12px;">状态</th>
</tr>
.......
</table>
</body>
</html>
这样试试