mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
23 lines
312 B
HTML
23 lines
312 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
#inner {
|
|
position: absolute;
|
|
left: 300px;
|
|
width: 400px;
|
|
height: 100px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="outer">
|
|
<div id="inner">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|