10
Como posso tornar os filhos do Flexbox com 100% de altura dos pais?
Estou tentando preencher o espaço vertical de um item flexível dentro de um Flexbox. .container { height: 200px; width: 500px; display: flex; flex-direction: row; } .flex-1 { width: 100px; background-color: blue; } .flex-2 { position: relative; flex: 1; background-color: red; } .flex-2-child { height: 100%; width: 100%; background-color: green; } …