mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
32 lines
405 B
HTML
32 lines
405 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
|
|
#destination {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: red;
|
|
}
|
|
|
|
#img {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
width: 25px;
|
|
height: 25px;
|
|
background-color: #FA6FF2;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<div id="destination">
|
|
<div id="img"><div>
|
|
</div>
|
|
</body>
|
|
</html>
|