mirror of
https://github.com/servo/servo.git
synced 2025-06-14 03:14:29 +00:00
24 lines
355 B
HTML
24 lines
355 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#container {
|
|
background: blue;
|
|
height: 180px;
|
|
width: 232px;
|
|
}
|
|
|
|
#box {
|
|
background: green;
|
|
height: 90px;
|
|
width: 120px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="box">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|