background-image-centered-with-border-radius-ref.html (424B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Background Test Reference</title> 5 <link rel="author" title="schenney" href="mailto:schenney@chromium.org"> 6 <style> 7 span { 8 background-color: green; 9 display: inline-block; 10 height: 60px; 11 width: 60px; 12 border: 5px solid green; 13 border-radius: 5px; 14 box-sizing: border-box; 15 } 16 </style> 17 </head> 18 19 <body> 20 <span></span> 21 </body> 22 </html>