When dealing with multiple radio buttons, each paired with a label, how can you ensure that the button and label always stay on the same line, while also automatically shifting to the next line for the next pair?
For example, on a large screen:
() Label 1 () Label 2 () Label 3
However, on a small screen, the desired layout should be:
() Label 1
() Label 2
() Label 3
Instead of the unintentional layout like this:
() Label 1 ()
Label 2 ()
Label 3