国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

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>