text-emphasis-punctuation-1.html (649B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS text decoration test: emphasis marks and punctuation</title> 4 <link rel="match" href="text-emphasis-punctuation-1-ref.html"> 5 <link rel="help" href="https://drafts.csswg.org/css-text-decor/#text-emphasis-style-property"> 6 <meta name="assert" content="emphasis marks are not drawn for punctuation (with a small set of exceptions)"> 7 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 9 <style> 10 .emph { text-emphasis: filled circle; font: 25px/2 Ahem; } 11 </style> 12 13 <p>The punctuation should <b>not</b> have emphasis marks:</p> 14 <p class="emph">Abc (def) gh? Ijk. Lm, n-op! [Qrst…uv] wx/yz.</p>