Home / CSS Tips Generated By ChatGPT / Flexbox for Spacing Between Items in CSS Distribute space between flex items using the justify-content property. Source Code .container { display: flex; justify-content: space-between; }