mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
26 lines
403 B
HTML
26 lines
403 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
position: relative;
|
|
width: 90px;
|
|
height: 90px;
|
|
border: solid 1px;
|
|
}
|
|
#abs {
|
|
position: absolute;
|
|
left: 30px;
|
|
top: 30px;
|
|
right: 30px;
|
|
bottom: 30px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
<div id="abs">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|