我希望从10号开始选择所有<li>
s。我宁愿拥有CSS,但如果有必要,javascript / jquery也可以。
答案 0 :(得分:14)
li:nth-child(n + 10) {
background: cornflowerblue;
}
“如果我想选择的话,我只想说10到25?” :
li:nth-child(n + 10):nth-child(-n + 25) {
background: cornflowerblue;
}
答案 1 :(得分:1)
使用gt:
选择器 - http://api.jquery.com/gt-selector/
$(document).ready(function () {
$('ul li:gt(9)').css('color', 'red'); // indexing starts from 0
});