Auto scale a div with background to fit into its parent using CSS – Html
I am making a application layout that consists of left and right section. .container { display: flex; flex: 1; flex-direction: row; justify-content: space-between; align-items: center; } .leftSection { flex: 0.7; background-color: #ccc; } .rightSection { flex: 0.2; background-color: #ccc; }…