12345678910111213141516171819202122232425 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Universal selector and inheritance</title>
- <style>
- * {
- color: black;
- }
- body {
- font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
- }
- h2 {
- color: red;
- }
- </style>
- </head>
- <body>
- <h1>An unexpected case of inheritance</h1>
- <h2>The emphasized text will be <em>black</em></h2>
- </body>
- </html>
|