这篇文章给大家分享的是有关css中:nth-child()语法是什么的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
下列N代表正整数
1、:nth-child(odd)或:nth-child(2n-1)奇数(双数)对象配置款式
2、:nth-child(even)大要:nth-child(2n)偶数(双数)对象配置花色
以上奇(单)数偶(双)数设置可以实现对象隔行格局
1)、:nth-child(odd)和:nth-child(even)实例代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>odd even奇数偶数实例</title>
<style>
ul,li{ list-style:none; margin:0; padding:0}
ul li:nth-child(odd){ background:#000; color:#FFF}
ul li:nth-child(even){ background:#FFF; color:#F00}
</style>
</head>
<body>
<ul>
<li>第一排 奇数排 CSS5实例</li>
<li>第二排 偶数排</li>
<li>第三排 奇数排</li>
<li>第四排 偶数排</li>
<li>第五排 奇数排</li>
<li>第六排 偶数排</li>
</ul>
</body> </html>
感谢各位的阅读!关于“css中:nth-child()语法是什么”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!