first-letter-width-2-ref.html (386B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <html lang="en"> 4 <head> 5 <title>initial-letter width test</title> 6 <style> 7 body { 8 overflow: scroll; 9 } 10 span { 11 position: absolute; 12 color: transparent; 13 } 14 #control { 15 background-color: green; 16 } 17 </style> 18 </head> 19 <body> 20 <p>There should be no red</p> 21 <span id="control">Test.</span> 22 </body> 23 </html>