mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
18 lines
314 B
HTML
18 lines
314 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
.container {
|
|
width: 100px;
|
|
}
|
|
|
|
.half {
|
|
height: 50%;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<div class="container" style="height: 100px">
|
|
<div class="half"></div>
|
|
</div>
|
|
<div class="container" style="height: 200px">
|
|
<div class="half"></div>
|
|
</div>
|