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>
|