百度试题 结果1 题目将div中第奇数个P背景设为红色(该div中只有p标签)()divp:nth-child(odd){background:red;} 相关知识点: 试题来源: 解析 divp:nth-child(odd){background:red;} 反馈 收藏
:nth-child(odd) { /* Add styles here */ } formula(n) 使用公式,可以选择符合一定条件的多个子元素。例如,下面的代码将选择父元素中所有位置为4n+1的子元素: :nth-child(4n+1) { /* Add styles here */ } start参数 使用start参数,可以选择从指定位置开始的一组子元素,而非仅仅是一个。例如,下面...
总的来说nth-child()圆括号里面支持两个关键词:even与odd。他们应该很明显的,even选择偶数标签,如第2、第4、第6等等。odd选择奇数标签,如第1,第3,第5等等。 正如你在第一个例子里面看到的,nth-child()的圆括号里也支持方程式的,是最简单的方程式吗?仅仅是数字。如果你在圆括号里面输入一个数字,那它仅仅选...
I'm having a little bit of trouble using CSS's :nth-child(odd) selector. It seems to apply the CSS rules to every image when I select it based on a div class. For example: .class img:nth-child(odd) { margin-right:10px; } and it's resulting in all of them being selected. ...
li:nth-child(odd){ color: green; } li:nth-child(even){ color: green; } 当然这里也有另外两种实现,你懂的——神飞 选择最后一个元素 li:last-child { color: green; } 选择倒数第二个 li:nth-last-child(2){ color: green; } 从这个例子可看出,上面那个例子也有第二种实现方法。
A. div:nth-child(even) p{ background:red;} B. div p:nth-child(even){ background:red;} C. div p:nth-child(odd){ background:red;} D. div:nth-child(odd) p{ background:red;}相关知识点: 试题来源: 解析 div p:nth-child(odd){ background:red;} 反馈...