我希望这不是重复的。我希望整行在tr[child]:hover
上都有颜色变化
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
tr[origin]:hover {
background-color: grey;
}
tr[origin]:hover + tr[child]{
background-color: grey;
}
tr[child]:hover {
background-color: grey;
}
</style>
</head>
<body>
<table border="1px">
<tr origin>
<td rowspan="2">1</td>
<td colspan="2">Question</td>
<td rowspan="2">2/3</td>
<td rowspan="2">View answer</td>
</tr>
<tr child>
<td>Rasp 1</td>
<td>Rasp2</td>
</tr>
<tr origin>
<td rowspan="2">1</td>
<td colspan="2">Question</td>
<td rowspan="2">2/3</td>
<td rowspan="2">View answer</td>
</tr>
<tr child>
<td>Rasp 1</td>
<td>Rasp2</td>
</tr>
</table>
</body>
</html>
2条答案
按热度按时间k2arahey1#
这是一个非常有趣的问题!
你可以用
tbody
来做这个。根据w3规范,你可以在一个表中放置多个tbody
。表行可以分组为表头、表尾和一个或多个表体部分[...]
ogq8wdun2#
在tbody中 Package 每一行的td元素,并在css中定位它: