зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
475 B
HTML
24 строки
475 B
HTML
<!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>
|