我有这个名为“answer_box”的 div 类,对于每个页面,它们将是 4 个不同的答案框,每次都有不同的文本。我想让每个答案之间的距离相同,无论盒子有很多文字还是很少,以保持设计一致。
我的html代码:
<div id="app">
<div class="answer_box">
<div class="answer_checkbox"></div>
<span class="answers"> little bit of text</span>
</div>
<div class="answer_box">
<div class="answer_checkbox"></div>
<span class="answers">you have priotrtoities over the people on the opposite direction</span>
</div>
<div class="answer_box">
<div class="answer_checkbox"></div>
<span class="answers">you have priotrtoities over the people on the opposite direction</span>
</div>
</div>
jsfiddle 在这里:http: //jsfiddle.net/24E6W/1/