12345678910111213141516171819202122232425262728 |
- <!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;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>hello</li>
- <li>world</li>
- <li>你好</li>
- <li>世界</li>
- </ul>
- </body>
- </html>
|