mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
314 B
HTML
26 lines
314 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.float, .float + div {
|
|
float: left;
|
|
height: 200px;
|
|
width: 100px;
|
|
background: #ccc;
|
|
}
|
|
.float + div{
|
|
float:right;
|
|
}
|
|
#bg {
|
|
background: #999;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="float"></div>
|
|
<div></div>
|
|
<div id="bg"></div>
|
|
</body>
|
|
</html>
|