Html – Can you create css-grid-like templates with a one-row flexbox layout?
Can I make this structure with flexbox? I give an example below with grid, but I want make this with flexbox. .container { display: grid; grid-template-columns: auto auto auto; gap: 10px; } .grid-item { background-color: aquamarine; } .small { height:…