Hi I have a asp radio button list. I need to put the drop down next to the radio button; all of them on the same row. Currently it is on the next row. Would someone help me how to fix it.
.post40
{
font-size: 11px;
text-align: right;
font-weight: bold;
padding: 2px 5px 2px 3px;
width: 40%;
}
<table id="rdList" class="rdList" border="0">
<tbody>
<tr>
<td class="post40">Attend:</td>
<td>
<input id="rdList" type="radio" name="rdList" value="1" checked="checked">
<label for="rdList_0">Yes</label>
</td>
<td>
<input id="rdList_1" type="radio" name="rdList" value="0">
<label for="rdList_1">No</label>
</td>
</tr>
</tbody>
</table>
<select name="dropNo" id="dropNo" style="position:relative; right:20px;"></select>
