mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
25 lines
403 B
HTML
25 lines
403 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.otherprojects {
|
|
background-color: red;
|
|
float: left;
|
|
width: 200px;
|
|
}
|
|
.otherprojects-item {
|
|
background-color: yellow;
|
|
float: left;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="otherprojects">
|
|
<div class="otherprojects-item">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|