I am struggling to align my radio buttons with the image placed beside them.
The image has a width of 260 pixels and a height of 88 pixels, while the radio buttons are enclosed within a table.
Although I attempted the following CSS code, it did not produce the desired result:
form input[type="radio"]{
vertical-align: middle;
margin-right: 10px;
}
Here is the structure of the table:
<table border="0" cellpadding="0" align="center">
<tr>
<td height="90">
<input type="radio" value="">
<img src="/images.gif" width="260" height="88" />
</td>
</tr>
</table>