mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
16 lines
197 B
HTML
16 lines
197 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body, html {
|
|
margin: 0;
|
|
}
|
|
#a {
|
|
position: absolute;
|
|
background: green;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<div id=a></div>
|
|
|