image-object-fit-with-background-1-ref.html (639B)
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 .test { 11 background: salmon; 12 padding: 4px; 13 width: 32px; 14 height: 32px; 15 display: block; 16 margin-bottom: 2px; 17 } 18 </style> 19 </head> 20 <body> 21 <img class="test" src="blue-32x32.png"> 22 <embed class="test" src="blue-32x32.png"> 23 <object class="test" data="blue-32x32.png"></object> 24 <video class="test" poster="blue-32x32.png"></video> 25 </body> 26 </html>