| <!DOCTYPE html> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head> |
| <title>CSS Test Reference: Scroll multiple background images that are positioned</title> |
| <link rel="author" title="Google" href="http://www.google.com/" /> |
| <style type="text/css"> |
| |
| * { |
| margin: 0; |
| padding: 0; |
| } |
| |
| #container { |
| margin: 10px; |
| padding: 10px; |
| border: 10px solid green; |
| } |
| |
| #container div { |
| width: 60px; |
| height: 60px; |
| background: green; |
| } |
| |
| </style> |
| </head> |
| <body> |
| <div id="container" style="margin: 10px; width: 60px; height: 60px;"><div></div></div> |
| </body> |
| </html> |