mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-25 06:29:21 +00:00
25 lines
416 B
HTML
25 lines
416 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
.outerContainer {
|
|
display: flex;
|
|
height: 100px;
|
|
background-color: red;
|
|
}
|
|
.innerContainer {
|
|
display: flex;
|
|
flex: 1;
|
|
background-color: lime;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="outerContainer">
|
|
<div class="innerContainer"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|