blob: 77aa2dbd512dd464556cc00111e69e28c9af71e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
div {
border: solid;
color: green;
text-align: center;
}
</style>
<body>
<p>Test passes if the words "PASS PASS" below are green and the words are centered within the box below.</p>
<div>PASS PASS</div>
</body>
|