This solution is generated by ChatGPT, correctness is not guaranteed. You might also be able to find a solution fromcommunity posts.
AI solution for CSS coding question on BFE.dev
4. two-column layout
.container { height: 300px; display: flex; }
.left { background-color: #f44336; min-width: 100px; width: 25%; }
.right { background-color: #2973af; flex: 1; }