mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02:00
20 lines
213 B
HTML
20 lines
213 B
HTML
<!DOCTYPE html>
|
|
<div id="outer">
|
|
<div id="inner">
|
|
</div>
|
|
</div>
|
|
<style>
|
|
#outer {
|
|
height: 100px;
|
|
width: 200px;
|
|
}
|
|
|
|
#inner {
|
|
height: 100%;
|
|
width: calc(50px + 30%);
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
|
|
|