mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
20 lines
449 B
HTML
20 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
* {
|
|
margin: 0;
|
|
}
|
|
#div0 {
|
|
position: absolute;
|
|
height: 100px;
|
|
width: 100%;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="div0">
|
|
</div>
|
|
</body>
|
|
</html>
|