css :n-child食谱

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css :n-child食谱相关的知识,希望对你有一定的参考价值。

/* Select Only the Fifth Element */
li:nth-child(5) {
    color: green;   
}

/* Select All But The First Five */
li:nth-child(n+6) {
    color: green;   
}

/* Select Only The First Five */
li:nth-child(-n+5) {
    color: green;   
}

/* select every 3rd, starting with 1st */
&:nth-child(3n+1) { 
    color: green;
}

/* select every 3rd, starting with 3rd */
&:nth-child(3n-3) { 
    color: green;
}

/* select first 3 */
&:nth-child(-n+3) { 
    color: green;
}

/* select last 3 */
&:nth-last-child(-n+3) { 
    color: green;
}

以上是关于css :n-child食谱的主要内容,如果未能解决你的问题,请参考以下文章

css Przykłady:n-child

css Псевдоклассыn-child

scss 先进的n-child mixins

如何使Internet Explorer 8支持第n个child()CSS元素?

使用成分、食谱和组件组织 django 食谱应用程序模型的最佳方式

即使食谱可用并且设置了依赖项,Chef 中也没有此类食谱异常 - AWS OpsWorks