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