mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
23 lines
363 B
HTML
23 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.outer {
|
|
background: red;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
.inner {
|
|
background: green;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="outer">
|
|
<div class="inner"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|