blob: d1b674a4476cebf6e315078d7ec48a278de63c18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html><head><title>CSS Variables 1: Test variables in background shorthand.</title>
<link href="mailto:lea@verou.me" rel="author" title="Lea Verou">
<style>
div {
width: 50px;
height: 50px;
padding: 50px;
margin: 10px;
display: inline-block;
background: green;
}
</style>
</head><body><p>Test passes if you see four green squares, and no red.</p>
<div id="d1"></div>
<div id="d2"></div>
<div id="d3"></div>
<div id="d4"></div>
</body></html>
|