国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)javascriptchildren_indexjQuery Selector - 如何nth-child(odd); 在懸停時(shí)懸停所有其他單元格,高亮顯示

jQuery Selector - 如何nth-child(odd); 在懸停時(shí)懸停所有其他單元格,高亮顯示

我們想知道如何nth-child(odd); 在懸停時(shí)懸停所有其他單元格,高亮顯示。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
td:nth-child(odd) {
  background: red;
}

td:nth-child(odd):hover {
  background: yellow;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>Word</td>
      <td>000</td>
      <td>Word</td>
      <td>123</td>
    </tr>
  </table>
</body>
</html>