blob: 541589be2168ca662a80e01cd2f95064ddc6b212 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
div {
border: 15px solid blue;
color: green;
}
a {
border-color: orange;
border-style: solid;
}
</style>
<body>
<p>Test passes if the words "PASS PASS" are green, they are contained within an orange box with thinner lines than the blue box.</p>
<div><a>PASS PASS</a></div>
</body>
|