initial-letter-short-para-initial-letter-wraps.html (953B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Tests initial letter subsequent paragraph wraps 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 <link rel="match" href="initial-letter-short-para-initial-letter-wraps-ref.html"> 10 <style> 11 .sample { 12 border: solid 1px green; 13 font-family: Ahem; 14 font-size: 20px; 15 line-height: 24px; 16 width: 230px; 17 } 18 19 .initial-letter::first-letter { 20 initial-letter: 3 drop; 21 color: lime; 22 font-size: 100px; /* should be ignored in rendering */ 23 line-height: 50px; /* should be ignored in rendering */ 24 } 25 </style> 26 </head> 27 <body> 28 <div class="sample initial-letter">Abc</div> 29 <div>subsequent paragraph</div> 30 </body> 31 </html>