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

App下載
首頁javascriptchildren_indexjQuery Selector - 如何nth-last-child(2); 選擇倒數(shù)第二個元素

jQuery Selector - 如何nth-last-child(2); 選擇倒數(shù)第二個元素

我們想知道如何nth-last-child(2); 選擇倒數(shù)第二個元素。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div:nth-last-child(2) {
  color: red;
}
</style>
</head>
<body>
  <div class="my_div">a</div>
  <div class="my_div">b</div>
  <div class="my_div">c</div>
  <div>other</div>
</body>
</html>