mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
22 lines
363 B
HTML
22 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.otherprojects {
|
|
background-color: red;
|
|
width: 200px;
|
|
}
|
|
.otherprojects-item {
|
|
background-color: yellow;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="otherprojects">
|
|
<div class="otherprojects-item">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|