mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
19 lines
222 B
HTML
19 lines
222 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
div div {
|
||
|
float: left;
|
||
|
width: 200px;
|
||
|
border: 2px solid #000;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<div>First float</div>
|
||
|
<div>Second float</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|