mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
19 lines
202 B
HTML
19 lines
202 B
HTML
<!DOCTYPE html>
|
|
<div id="outer">
|
|
<div id="inner">
|
|
</div>
|
|
</div>
|
|
<style>
|
|
#outer {
|
|
height: 100px;
|
|
width: 200px;
|
|
}
|
|
|
|
#inner {
|
|
height: 100%;
|
|
width: 110px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
|
|
|