background-size-contain-clip-padding-origin-border.html (558B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>background-size: contain; background-clip: padding-box, background-origin: border-box</title> 5 <style type="text/css"> 6 #outer 7 { 8 border: 1px solid black; 9 width: 64px; 10 height: 128px; 11 } 12 #inner 13 { 14 border: 20px solid transparent; 15 width: 24px; 16 height: 88px; 17 background-image: url(aqua-32x32.png); 18 background-repeat: no-repeat; 19 background-size: contain; 20 background-clip: padding-box; 21 background-origin: border-box; 22 } 23 </style> 24 </head> 25 <body> 26 <div id="outer"><div id="inner"></div></div> 27 </body> 28 </html>