mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
31 lines
574 B
HTML
31 lines
574 B
HTML
<!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>
|