blob: 5d9dd3b42a416e049e372de37b90cfda6b64ba8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="../handleprop.js" type="text/javascript"></script>
<style>
#child {
width: 100px;
height: 100px;
left: 300px;
top: 200px;
}
</style>
</head>
<body>
<div id="parent">
<div id="child">
<div class="floatLeft"></div>
<div class="floatLeft"></div>
</div>
</div>
</body>
</html>
|