mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
27 lines
370 B
HTML
27 lines
370 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#parent {
|
|
height: 100px;
|
|
background-color: lightgreen;
|
|
}
|
|
#last-child {
|
|
height: 140px;
|
|
margin-bottom: -20px;
|
|
background-color: green;
|
|
}
|
|
#separator {
|
|
height: 20px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="parent">
|
|
<div id="last-child"></div>
|
|
</div>
|
|
<div id="separator"></div>
|
|
</body>
|
|
</html>
|