In my HTML code, I have a div class named 'answer_box' which contains different text for each of the four answer boxes on the page. I need to ensure that there is consistent spacing between each box, regardless of the amount of text inside, in order to maintain a cohesive design.
Here is my HTML code:
<div id="app">
<div class="answer_box">
<div class="answer_checkbox"></div>
<span class="answers"> A little bit of text </span>
</div>
<div class="answer_box">
<div class="answer_checkbox"></div>
<span class="answers">You have priorities over the people going in the opposite direction</span>
</div>
<div class="answer_box">
<div class="answer_checkbox"></div>
<span class="answers">You have priorities over the people going in the opposite direction</span>
</div>
</div>
View the JSFiddle here: http://jsfiddle.net/24E6W/1/