mirror of
https://github.com/servo/servo.git
synced 2025-07-16 11:53:39 +01:00
24 lines
335 B
HTML
24 lines
335 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
section {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 0;
|
|
left: 0;
|
|
background: gold;
|
|
}
|
|
nav {
|
|
position: absolute;
|
|
width: 200px;
|
|
height: 100px;
|
|
top: 0;
|
|
left: 100px;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<section></section><nav></nav>
|
|
|