origin-padding-box.html (869B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Backgrounds Test: background-origin:padding-box</title> 6 <link rel="author" title="finscn" href="mailto:finscn@gmail.com" > 7 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-origin" > 8 <meta name="flags" content=""> 9 <link rel="match" href="../reference/origin-padding-box-ref.html"> 10 11 12 13 <style type="text/css"> 14 15 div { 16 border : 16px solid rgba(60,150,255,0.4); 17 width : 450px; 18 height : 224px; 19 padding : 16px; 20 margin-top : 8px; 21 background-image : url("support/yellow-orange-blue-160x160.png"); 22 background-origin : padding-box; 23 } 24 25 .no-repeat { 26 background-repeat : no-repeat; 27 } 28 29 .repeat { 30 background-repeat : repeat; 31 } 32 33 </style> 34 35 </head> 36 <body> 37 38 <div class="no-repeat"></div> 39 40 <div class="repeat"></div> 41 42 </body> 43 44 </html>