<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>焦点事件</title>
<style>
tr{
background-color: red;
}
tr:hover{
background-color: yellow;
font-size: 30px;
}
th{
width: 50px;
}
.a{
background-color: yellow;
}
</style>
</head>
<body>
<table>
<tr >
<th class="a"></th>
<th>hai li</th>
<th>gun cu</th>
</tr>
<tr>
<th class="a"></th>
<th>hai li</th>
<th>gun cu</th>
</tr>
<tr>
<th class="a"></th>
<th>hai li</th>
<th>gun cu</th>
</tr>
<tr>
<th class="a"></th>
<th>hai li</th>
<th>gun cu</th>
</tr>
</table>
</body>
</html>
转载于:https://my.oschina.net/lafter/blog/881115