flexbox space-between and align right
问题 I have a div with 1 to 3 items and I want them to behave like this : Three items : take the whole line with justify-content: space-between +-----------+ | 1 | 2 | 3 | +-----------+ If there is only 1 item, align it to the right. +-----------+ | | 3 | +-----------+ Here's my code : .container { display: flex; width: 300px; justify-content: space-between; /* Styling only */ padding: 10px; background: #ccc; margin-bottom: 10px; } .container div { /* Styling only */ background: white; padding: