initial-letter-short-para-initial-letter-clears-ref.html (922B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Tests initial letter subsequent paragraph clears initial letter.</title> 5 <link rel="author" title="Google LLC" href="https://www.google.com/"> 6 <link rel="help" href="https://drafts.csswg.org/css-inline/#short-para-initial-letter"> 7 <meta name="flags" content="ahem"> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" > 9 <style> 10 .sample { 11 border: solid 1px green; 12 font-family: Ahem; 13 font-size: 20px; 14 line-height: 24px; 15 width: 230px; 16 } 17 18 .fake-initial-letter { 19 background: lime; 20 float: left; 21 height: 80px; 22 margin-top: 2px; 23 width: 80px; 24 clear: left; 25 } 26 </style> 27 </head> 28 <body> 29 <div class="sample"><div class="fake-initial-letter"></div>bc<br>Def<br></div> 30 <div class="sample" style="padding-top:32px"><div class="fake-initial-letter"></div>XY<br>ABC<br></div> 31 </body> 32 </html>