blob: 7c197ebd157510a99769f50e22d92804b938fb24 (
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 {
left: 300px;
top: 200px;
right: 20px;
bottom: 20px;
}
</style>
</head>
<body>
<div id="parent">
<div id="child">
<div class="floatLeft"></div>
<div class="floatLeft"></div>
</div>
</div>
</body>
</html>
|