mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
22 lines
507 B
HTML
22 lines
507 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta charset="UTF-8">
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
div {
|
|
background-color: red;
|
|
width: 100px;
|
|
height: 100px;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|