Like the Title of this post, how do you separate two items even after the row wraps? I have a navigation bar with a logo (item 1) and Nav links (item 2). I want so when the screen shrinks the Nav links to go under and go to the right. Here is a code pen and an example:
From:
/**************************/
/*-item1-* *-----item2---* /
/**************************/
to:
/**************************/
/*-item1-* /
/ *-----item2---* /
/**************************/
instead of
From:
/**************************/
/*-item1-* *-----item2---* /
/**************************/
to:
/**************************/
/*-item1-* /
/*-----item2---* /
/**************************/
` but you must also remove the `{ width:900px }` and remove "justify-content-between" from the `
– aequalsb Jul 13 '21 at 19:51