mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
30 lines
507 B
HTML
30 lines
507 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.float-left, .float-right {
|
|
float: left;
|
|
width: 125px; height: 1em;
|
|
background-color: red;
|
|
}
|
|
.float-right {
|
|
float: right;
|
|
}
|
|
.fieldset {
|
|
margin: 0 125px 0; padding: 0;
|
|
border: none;
|
|
height: 5em;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="float-left"></div>
|
|
<div class="float-right"></div>
|
|
<div class="fieldset"></div>
|
|
<div class="float-left"></div>
|
|
<div class="float-right"></div>
|
|
<div class="fieldset"></div>
|
|
</body>
|
|
</html>
|