blob: 3801464ee2b4972677fe4a5fd8bb7952367389b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<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>
|