mirror of
https://github.com/servo/servo.git
synced 2025-06-11 10:00:18 +00:00
26 lines
560 B
HTML
26 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
div {
|
|
float: left;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
.red {
|
|
background-color: red;
|
|
}
|
|
.yellow {
|
|
background-color: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="yellow"></div>
|
|
<div class="red"></div>
|
|
<div class="yellow"></div>
|
|
</body>
|
|
</html>
|