CSS——餐厅选择器答案

  1. palte
  2. bento
  3. #fancy
  4. plate appleplate>apple
  5. plate#fancy pickle
  6. apple.small.small
  7. orange.small
  8. bento orange.smallbento>orange.small
  9. plate,bento,.pickle
  10. *
  11. plate *
  12. plate+apple
  13. bento~pickle
  14. plate>apple
  15. plate>orange:first-child
  16. plate :only-child
  17. plate#fancy>apple,pickle
  18. plate:nth-child(3)
  19. bento:nth-last-child(3)
  20. apple:first-of-type
  21. plate:nth-child(2n)
  22. plate:nth-of-type(2n+3)
  23. plate:nth-of-type(2)>apple
  24. orange:last-of-type,apple:last-of-type
  25. bento:empty
  26. apple:not(.small)
  27. [for]
  28. plate[for]
  29. bento[for="Vitaly"]
  30. plate[for^=S],bento[for^=S]
  31. plate[for$=o],bento[for$=o]
  32. plate[for*=bb],bento[for*=bb]
    在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_37369201/article/details/121103362