mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
25 lines
542 B
HTML
25 lines
542 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.fl {
|
|
float: left;
|
|
}
|
|
.green {
|
|
background-color: green;
|
|
}
|
|
.fixed {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="fl green fixed"></div>
|
|
<div class="fl fixed"></div>
|
|
<div class="fl green fixed"></div>
|
|
</body>
|
|
</html>
|