My goal is to design a 2 column layout where the left column has a fixed width and the right column adjusts its size to fill the remaining space on the screen. However, I am facing difficulties with displaying the columns properly.
.container {
display: flex;
width: 100%;
height: 100%;
}
.left-column {
flex: 0 0 200px;
height: 100%;
background: lightcoral;
}
.right-column {
flex-grow: 1;
background: lightgreen;
}