mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
20 lines
280 B
HTML
20 lines
280 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
section {
|
|
width: 300px;
|
|
height: 100px;
|
|
background: blue;
|
|
}
|
|
nav {
|
|
display: inline-block;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 0 auto;
|
|
background: gold;
|
|
}
|
|
</style>
|
|
<section><nav></nav></section>
|
|
|