由於Ember腳本標記,我正在使用Ember應用,並且必須使用錯誤的數字來針對nth-child。有一種可靠的方法來在Ember應用程序中使用CSS定位nth-children嗎?在Ember應用中針對nth-child的問題
因此,而不是:
.league li:nth-child(1) h3::after { color: #eec600; }
.league li:nth-child(2) h3::after { color: #b0b0b0; }
.league li:nth-child(3) h3::after { color: #ae7435; }
我必須做的:
.league li:nth-child(3) h3::after { color: #eec600; }
.league li:nth-child(6) h3::after { color: #b0b0b0; }
.league li:nth-child(9) h3::after { color: #ae7435; }
「錯誤」的號碼?你的意思是奇怪?看看'div:n-child(odd){...}' – Rvervuurt 2014-10-02 12:55:19
將近4k,你還沒有包含這樣一個問題的代碼片段? ...使用[':nth-of-type'](http://www.w3.org/wiki/CSS/Selectors/pseudo-classes/:nth-of-type)... – 2014-10-02 12:58:43
@NicoO在快點 - 添加片段:-) – 2014-10-02 16:30:50