/* Setup styles in the other file. */section{display:flex;flex-wrap:wrap;}section:nth-child(1){gap:10px;}section:nth-child(2){row-gap:10px;}section:nth-child(3){column-gap:20px;}section:nth-child(4){gap:10px20px;/* Shorthand. */}section:nth-child(5){justify-content:space-between;align-content:space-between;gap:10px;/* No effect here. */}
<!doctype html><html><head><metacharset="utf-8"><metaname="viewport"content="width=device-width, initial-scale=1"><linkhref="../assets/reset.css"rel="stylesheet"><linkhref="setup.css"rel="stylesheet"><linkhref="style.css"rel="stylesheet"></head><body><section><div><p>Item 1</p></div><div><p>Item 2 <br>with line <br>breaks</p></div><div><p>Item 3 <br>also</p></div><div><p>Item 4</p></div><div><p>Item 5 with more text</p></div></section><section><div><p>Item 1</p></div><div><p>Item 2 <br>with line <br>breaks</p></div><div><p>Item 3 <br>also</p></div><div><p>Item 4</p></div><div><p>Item 5 with more text</p></div></section><section><div><p>Item 1</p></div><div><p>Item 2 <br>with line <br>breaks</p></div><div><p>Item 3 <br>also</p></div><div><p>Item 4</p></div><div><p>Item 5 with more text</p></div></section><section><div><p>Item 1</p></div><div><p>Item 2 <br>with line <br>breaks</p></div><div><p>Item 3 <br>also</p></div><div><p>Item 4</p></div><div><p>Item 5 with more text</p></div></section><section><div><p>Item 1</p></div><div><p>Item 2 <br>with line <br>breaks</p></div><div><p>Item 3 <br>also</p></div><div><p>Item 4</p></div><div><p>Item 5 with more text</p></div></section></body></html>