02-08-specificity-at-a-glance.html 889 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Specificity at a glance — Debugging</title>
  6. <style>
  7. #content #main h2 {
  8. color: gray;
  9. }
  10. div > #main > h2 {
  11. color: green;
  12. }
  13. #content > [id="main"] .news-story:nth-of-type(1) h2.first {
  14. color: hotpink;
  15. }
  16. :root [id="content"]:first-child > #main h2:nth-last-child(3) {
  17. color: gold;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="content">
  23. <main id="main">
  24. <h2>Strange Times</h2>
  25. <p>Here you can read bizarre news stories from around the globe.</p>
  26. <div class="news-story">
  27. <h2 class="first">Bog Snorkeling Champion Announced Today</h2>
  28. <p>The 2008 Bog Snorkeling Championship was won by Conor Murphy
  29. with an impressive time of 1 minute 38 seconds.</p>
  30. </div>
  31. </main>
  32. </div>
  33. </body>
  34. </html>