mirror of
https://github.com/servo/servo.git
synced 2025-06-19 22:59:03 +01:00
20 lines
334 B
HTML
20 lines
334 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>You see here a scroll labeled FOOBIE BLETCH.</title>
|
|
<style>
|
|
#foo {
|
|
background: url(400x400_green.png);
|
|
background-position: 128px 0px;
|
|
background-repeat: no-repeat;
|
|
width: 528px;
|
|
height: 400px;
|
|
margin-left: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=foo></div>
|
|
</body>
|
|
</html>
|
|
|