| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| <html> |
| <head> |
| <title>More than one class selector</title> |
| <style type="text/css"> |
| p { background: green; color: white; } |
| .t1.fail { background: red; color: yellow; } |
| .fail.t1 { background: red; color: yellow; } |
| .t2.fail { background: red; color: yellow; } |
| .fail.t2 { background: red; color: yellow; } |
| /* Note: This is a valid test even per CSS1, since in CSS1 those rules |
| are invalid and should be dropped. */ |
| </style> |
| <link rel="first" href="css3-modsel-1.html" title="Groups of selectors"> |
| <link rel="prev" href="css3-modsel-14.html" title="More than one class selector"> |
| <link rel="next" href="css3-modsel-14c.html" title="More than one class selector"> |
| <link rel="last" href="css3-modsel-d4.html" title="Dynamic updating of :first-child and :last-child"> |
| <link rel="up" href="./index.html"> |
| <link rel="top" href="../../index.html"> |
| </head> |
| <body> |
| <p class="t1">This line should be green.</p> |
| <p class="t1 t2">This line should be green.</p> |
| </body> |
| </html> |