mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
30 lines
441 B
HTML
30 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>
|