Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Reference File</title>
<link rel="author" title="Ji Kai" href="mailto:7jikai@gmail.com">
<link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-04 -->
<style>
div {
background-color: green;
position: absolute;
top: 100px;
width: 25px;
height: 100px;
}
#left {
left: 100px;
}
#right {
left: 175px;
}
</style>
</head>
<body>
<p>The test passes if there are two green rectangles.</p>
<div id="left"></div>
<div id="right"></div>
</body>
</html>