123456789101112131415161718 |
- <!-- Blend a background image and a background color specifying background-size -->
- <!DOCTYPE HTML>
- <html>
- <head>
- <style>
- div {
- background: #777777;
- width: 200px;
- height: 200px;
- margin: 10px;
- }
- </style>
- </head>
- <body>
- <div></div>
- </body>
- </html>
|