inherited.html (550B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Effective zoom value is inherited</title> 4 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 5 <link rel="author" href="https://mozilla.com" title="Mozilla"> 6 <link rel="help" href="https://drafts.csswg.org/css-viewport/#zoom-property"> 7 <link rel="match" href="basic-ref.html"> 8 <style> 9 .container { 10 zoom: 2; 11 } 12 .child { 13 width: 100px; 14 height: 100px; 15 background-color: green; 16 } 17 </style> 18 <div class="child"></div> 19 <div class="container"> 20 <div class="child"></div> 21 </div>