mirror of
https://github.com/servo/servo.git
synced 2025-07-30 18:50:36 +01:00
28 lines
409 B
HTML
28 lines
409 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<!-- Tests that box-shadow inset works. -->
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 100px;
|
|
left: 100px;
|
|
background: gold;
|
|
}
|
|
nav {
|
|
display: block;
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 90px;
|
|
background: white;
|
|
left: 50px;
|
|
top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section><nav></nav></section>
|
|
</body>
|
|
|
|
|