blob: 5f5a9af957990707ab0169e740967278df04697e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Reference File</title>
<link rel="author" title="Oleg Janeiko" href="mailto:oleg@the-incredible.me">
<style type="text/css">
div {
background-color: green;
float: left;
margin: 50px;
width: 30px;
height: 30px;
}
</style>
</head>
<body>
<p>The test passes if there are two green squares of the same size.</p>
<div></div>
<div></div>
</body>
</html>
|