Usually, when you have two inline elements and resize the page down, the second element wraps to the next line like this:
Is there a way to make it go onto its own line first, and then wrap normally from there?
If I use white-space: nowrap
on the second element, it works fine until the element is too big for one line:
This is my desired outcome:
Can this be achieved with just HTML and CSS?