123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- /* 伪类选择器 */
- /* li:first-child{
- color: red;
- }
- li:last-child{
- color: blue;
- }
- li:nth-child(3){
- color: yellow;
- } */
- /* odd 选中奇数标签 */
- /* li:nth-child(odd){
- color: red;
- } */
- /* even 选中偶数标签 */
- li:nth-child(even){
- color: red;
- }
- li:hover{
- color: blue;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>hello</li>
- <li>world</li>
- <li>你好</li>
- <li>世界</li>
- </ul>
- </body>
- </html>
|