background-size-contain-clip-border.html (492B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>background-size: contain; background-clip: 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: border-box; 21 } 22 </style> 23 </head> 24 <body> 25 <div id="outer"><div id="inner"></div></div> 26 </body> 27 </html>