mirror of
https://github.com/servo/servo.git
synced 2025-06-28 02:53:48 +01:00
13 lines
275 B
HTML
13 lines
275 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
.positioned {
|
|
background-color: green;
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<p>Test passes if there is a green rectangle and no red.</p>
|
|
<div class="positioned"></div>
|