Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Baconalwaysbetterthanyou/63ad18eec64767205c716392790e3e0f to your computer and use it in GitHub Desktop.
Save Baconalwaysbetterthanyou/63ad18eec64767205c716392790e3e0f to your computer and use it in GitHub Desktop.
Css Diner Answers
CSS Diner Answers
1. plate
2. bento
3. #fancy
4. Plate apple
5. #fancy pickle
6. .small
7. orange.small
8. bento orange.small
9. plate, bento
10. *
11. plate *
12. plate + apple
13. bento ~ pickle
14. plate > apple
15. orange:first-child
16. plate apple:only-child, plate pickle:only-child
16. .small:last-child
18. plate:nth-child(3)
19. bento:nth-last-child(3)
20. apple:first-of-type
21. plate:nth-of-type(even)
22. plate:nth-of-type(2n+3)
23. plate apple:only-of-type
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. *[for^="Sa"]
31. *[for$="ato"]
32. bento[for*="obb"]
@Baconalwaysbetterthanyou
Copy link
Author

100% working Codes :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment