calc-background-size-1-ref.html (519B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>CSS Reference: Test for calc() on background-size</title> 5 <link rel="author" title="L. David Baron" href="https://bugzilla.mozilla.org/show_bug.cgi?id=594934"> 6 <style type="text/css"> 7 8 p { 9 height: 50px; width: 200px; 10 border: thin solid; 11 background-image: url(support/blue-32x32.png); 12 background-repeat: no-repeat; 13 } 14 15 #one { background-size: 150px 20px; } 16 #two { background-image: none } 17 18 </style> 19 </head> 20 <body> 21 <p id="one"></p> 22 <p id="two"></p> 23 </body> 24 </html>