quoted-generic-ignored-ref.html (666B)
1 <!DOCTYPE HTML> 2 <html lang="en"> 3 <head> 4 <meta charset=utf-8> 5 <title>CSS Reference: quoted font-family names must not be treated as generics</title> 6 <link rel="author" title="Jonathan Kew" href="mailto:jfkthame@gmail.com"/> 7 <style> 8 body { font-size: 36px; } 9 .test1 { font-family: serif; } 10 .test2 { font-family: sans-serif; } 11 .test3 { font-family: monospace; } 12 </style> 13 <body> 14 <p>The following lines should be rendered with the generic font-families as named:</p> 15 <div class="test1">serif</div> 16 <div class="test2">sans-serif</div> 17 <div class="test3">monospace</div> 18 <div class="test1">serif</div> 19 <div class="test2">sans-serif</div> 20 <div class="test3">monospace</div>