image-object-position-dyn-1-ref.html (545B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html> 7 <head> 8 <meta charset="utf-8"> 9 <style type="text/css"> 10 embed, img, object, video { 11 object-fit: fill; 12 object-position: 0 0; 13 background: red; 14 width: 50px; 15 height: 30px; 16 } 17 </style> 18 </head> 19 <body> 20 <embed src="500.svg"> 21 <img src="500.svg"> 22 <object data="500.svg"></object> 23 <video poster="500.svg"></video> 24 </body> 25 </html>