<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>伪类选择器</title>
<style>
/* 第一个子标签
ul>li:first-child {
color: red;
} */
/* 最后一个标签
ul > li:first-of-type{
color: red;
}
*/
/* 这一类标签中的偶数的标签
ul > li:nth-of-type(2n){
color: red;
} */
/*
不是奇数的 (即偶数的) not 表示否定
ul > li:not(:nth-of-type(odd))
{
color: seagreen;
} */
</style>
</head>
<body>
<ul>
<p>P标签</p>
<li>第0个</li>
<li>第一个</li>
<li>第二个</li>
<li>第三个</li>
<li>第四个</li>
<li>第五个</li>
</ul>
</body>
</html>