mirror of
https://github.com/servo/servo
synced 2026-05-11 17:37:21 +02:00
24 lines
366 B
HTML
24 lines
366 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("../rust-0.png");
|
|
background-position: 25px 25px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="destination"></div>
|
|
</body>
|
|
</html>
|