blob: 317170fc0c991dbe1f752dd4a964238df8c80308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
body {
margin: 0px;
}
.test {
color: green;
}
p {
margin-left: 8px;
}
</style>
<body>
<div class="test">PASS PASS</div>
<p>Test passes if the words "PASS PASS" appear above this text.</p>
</body>
|