I am designing a quiz template with radio buttons. However, I would like them to be stacked vertically instead of side by side.
Why doesn't the <br/>
tag work? I'm having trouble understanding it. Can someone assist me?
Here is my code:
<tr>
<td colspan="2">
<b>"Men are basically little piglets... Males are biologically driven to go out and hunt giraffes."</b>
</td>
</tr>
<tr id="0">
<td onmouseover="checkSelect(this)" onmouseout="setBGDefault(this)" onclick="applySelect(this,0)"><input type="radio" name=que_1 value="1" />Newt Gingrich</td>
<br>
<td onmouseover="checkSelect(this)" onmouseout="setBGDefault(this)" onclick="applySelect(this,1)"><input type="radio" name=que_1 value="0" />Dwight Schrute</td>
<br>
<td onmouseover="checkSelect(this)" onmouseout="setBGDefault(this)" onclick="applySelect(this,1)"><input type="radio" name=que_1 value="0" />Dwight Schrute</td>
<br>
<td onmouseover="checkSelect(this)" onmouseout="setBGDefault(this)" onclick="applySelect(this,1)"><input type="radio" name=que_1 value="0" />Dwight Schrute</td>
<br>
</tr>
<tr id="correct" style="display:none">
<td colspan="2">Correct! This quote is from a controversial lecture on the military that Gingrich delivered while teaching at Reinhardt College. He also made comments about women in combat missions.</td>
</tr>
<tr id="wrong" style="display:none;">
<td colspan="2">Incorrect. This quote is from a controversial lecture on the military that Gingrich delivered while teaching at Reinhardt College. He also made comments about women in combat missions.</td>
</tr>