I want the questions to be in a wide left column and the answer choices to all be in the slim right column. I am very new to Flexbox and have been learning/googling all day on this, and I can't find a solution I like.
My form also has situations before some questions and I would like that to be in the left column, too, but I still need the answers to be across from their corresponding question.
I've looked at links like this and this, but I'm not finding a good solution for my problem.
I have also looked at SO Questions CSS align one item right with flexbox and Creating a two column layout with flexbox.
<p>Example Situation</p>
<p id="question1">Question 1</p>
<input type="radio" name="question1" id="yes1" value="yes">
<label for="yes1">Yes</label>
<input type="radio" name="question1" id="no1" value="no">
<label for="no1">No</label>
<p id="question2">Question 2</p>
<input type="radio" name="question2" id="yes2" value="yes">
<label for="yes2">Yes</label>
<input type="radio" name="question2" id="no2" value="no">
<label for="no2">No</label>