font-size-zero-1.html (614B)
1 <!DOCTYPE HTML> 2 <title>CSS Test: font-size: 0</title> 3 <link rel="author" title="L. David Baron" href="https://dbaron.org/"> 4 <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> 5 <link rel="help" href="http://www.w3.org/TR/css3-fonts/#font-size-prop"> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins"> 7 <link rel="match" href="font-size-zero-1-ref.html"> 8 <style> 9 /* spec ambiguous whether font-size-adjust influences line-height: normal */ 10 body { line-height: 1.2 } 11 12 p { margin: 1em 0 } 13 p.zero { font-size: 0 } 14 </style> 15 16 <p>before</p> 17 <p class="zero">zero</p> 18 <p>after</p>