mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
14 lines
327 B
HTML
14 lines
327 B
HTML
<!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>
|