mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
23 lines
394 B
HTML
23 lines
394 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
#destination {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: red;
|
|
background-image: url("../2x2.png");
|
|
background-position: 50px 50px;
|
|
background-repeat: no-repeat;
|
|
background-size: 50px 50px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="destination"></div>
|
|
</body>
|
|
</html>
|