font-size.html (567B)
1 <!DOCTYPE html> 2 <title>CSS zoom applies to font-size when specified and inherited</title> 3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 4 <link rel="author" title="Mozilla" href="https://mozilla.org"> 5 <link rel="help" href="https://drafts.csswg.org/css-viewport/"> 6 <link rel="match" href="font-size-ref.html"> 7 <div style="font-size: 12px"> 8 12px text 9 </div> 10 <hr> 11 <div style="font-size: 12px; zoom: 2"> 12 12px zoomed text 13 </div> 14 <hr> 15 <div style="font-size: 12px"> 16 <div style="zoom:2"> 17 12px zoomed inherited text 18 </div> 19 </div>