mirror of
https://github.com/servo/servo.git
synced 2025-06-26 18:14:34 +01:00
20 lines
239 B
HTML
20 lines
239 B
HTML
<!DOCTYPE html>
|
|
<title>Reference</title>
|
|
<style>
|
|
div {
|
|
margin: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
#target {
|
|
width: 300px;
|
|
height: 300px;
|
|
top: 0;
|
|
left: 200px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<div id="target"></div>
|
|
</div>
|