123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- /* 关系选择符 */
- /* div + p {
- background: red;
- } */
- /* div ~ p {
- background: red;
- } */
- /* 属性选择器 */
- /* li[class] {
- background: red;
- } */
- /* li[class='aa'] {
- background: red;
- } */
- /* li[class~='a']{
- background: red;
- } */
- /* li[class^='a']{
- background: red;
- } */
- /* li[class*='a']{
- background: red;
- } */
- /* li[class$='b']{
- background: red;
- } */
- /* li:last-child{
- background: red;
- } */
- /* li:nth-child(3){
- background: red;
- } */
- /* li:nth-child(even){
- background: red;
- } */
- /* li:nth-child(odd){
- background: red;
- } */
- </style>
- </head>
- <body>
- <!--
- id选择器
- class选择器
- 标签选择器
- 属性选择器
- 后代选择器
- 子代选择器
- 群组选择器
- 伪类选择器
- 伪元素选择器
- -->
- <p>000000</p>
- <div>111111</div>
- <p>22222</p>
- <p>33333</p>
- <ul>
- <li class="aa">111111</li>
- <li>222222</li>
- <li class="bb">333333</li>
- <li class="ab">444444</li>
- <li class="a">555555</li>
- <li class="ba">666666</li>
- </ul>
- </body>
- </html>
|