02-09-universal-selector-inheritance.html 457 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Universal selector and inheritance</title>
  6. <style>
  7. * {
  8. color: black;
  9. }
  10. body {
  11. font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  12. }
  13. h2 {
  14. color: red;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>An unexpected case of inheritance</h1>
  20. <h2>The emphasized text will be <em>black</em></h2>
  21. </body>
  22. </html>