mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00: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>
|
|
|