我期待從10號起選擇所有<li>
。我寧願有CSS,但如果有必要,javascript/jquery可以。我可以:n-child(10-infinity)嗎?
2
A
回答
14
li:nth-child(n + 10) {
background: cornflowerblue;
}
「那如果我要選擇讓說,只有10〜25?」 :
li:nth-child(n + 10):nth-child(-n + 25) {
background: cornflowerblue;
}
1
使用gt:
選擇 - http://api.jquery.com/gt-selector/
$(document).ready(function() {
$('ul li:gt(9)').css('color', 'red'); // indexing starts from 0
});
相關問題
- 1. 我可以從Subversion FTP嗎?
- 2. 我可以更新HDFStore嗎?
- 3. 我可以停止IIS嗎?
- 4. 我可以刪除xxxxxxxAreaRegistration.cs嗎?
- 5. 我可以回到ef5嗎?
- 6. 我可以延遲window.open()嗎?
- 7. 我可以重寫Convert.ToDateTime()嗎?
- 8. 我可以省略EventTrigger.Actions嗎?
- 9. 我可以清除NSDatePicker嗎?
- 10. 我可以重寫PreApplicationStartMethodAttribute嗎?
- 11. 我可以扔`std :: bad_cast`嗎?
- 12. 我可以撤銷deviceToken嗎?
- 13. 我可以訂購readdir嗎?
- 14. 我可以連載NSManagedObject嗎?
- 15. 我可以簡化sql嗎?
- 16. 我可以用藍牙嗎?
- 17. 我可以不用KVO嗎?
- 18. 我可以刪除flashlogs.txt嗎?
- 19. 我可以擺脫WakeLock嗎?
- 20. 我可以觸發SimpleButtonAction嗎?
- 21. 我可以覆蓋window.onbeforeunload嗎?
- 22. 我可以使用NSPredicate嗎?
- 23. 我可以依靠mod_rewrite嗎?
- 24. 我可以依靠MSXML4嗎?
- 25. 我可以更改XmlReader.Settings嗎?
- 26. 我可以壓縮Response.write嗎?
- 27. 我可以移動UIAlertView嗎?
- 28. 我可以偷看BufferedReader嗎?
- 29. 我可以使用PayPal嗎?
- 30. 我可以製作TextInput嗎?
你需要什麼瀏覽器支持? – lbstr