mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
277 B
HTML
22 lines
277 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
#a {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
#b {
|
||
|
float: left;
|
||
|
height: 100px; width: 50px;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="a"></div>
|
||
|
<div id="b"></div>
|
||
|
</body>
|
||
|
</html>
|