mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
24 lines
380 B
HTML
24 lines
380 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#float-blue {
|
||
|
float: left;
|
||
|
margin-right: 20px;
|
||
|
background-color: blue;
|
||
|
height: 100px;
|
||
|
}
|
||
|
.float-green {
|
||
|
float: left;
|
||
|
margin: 0 20px;
|
||
|
background-color: green;
|
||
|
width: 40px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="float-blue"><div class="float-green"></div></div><div class="float-green"></div>
|
||
|
</body>
|
||
|
</html>
|