mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
335 B
HTML
24 lines
335 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#abs-pos {
|
|
position: absolute;
|
|
top: 20px; left: 20px;
|
|
width: 200px;
|
|
padding: 40px 0;
|
|
background-color: lightgreen;
|
|
}
|
|
#in-flow-child {
|
|
height: 100px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="abs-pos">
|
|
<div id="in-flow-child"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|