Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<head>
<title>CSS Test Reference: Scroll multiple background images that are positioned</title>
<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>