-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
19 lines (18 loc) · 943 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/reflow-meter.js"></script>
</head>
<body>
<div class="test">
<div style="width: 100px; height: 10px; background: red;">blah</div>
<div style="width: 100px; height: 40px; background: red; position: relative;">blah</div>
<div style="width: 100px; height: 40px; background: red; overflow: hidden;">blah</div>
<div style="width: 100px; height: 40px; background: red; overflow: hidden; position: relative;">blah</div>
<div style="width: 100px; height: 40px; background: red;">blah</div>
</div>
</body>
</html>