Consider this code:
HTML:
<table>
<tr>
<td>Option 1</td>
<td><input type='checkbox' id='option1' /></td>
</tr>
<tr>
<td>Option 2</td>
<td><input type='checkbox' id='option2' /></td>
</tr>
<tr>
<td>Option 3</td>
<td><input type='checkbox' id='option3' /></td>
</tr>
<tr>
<td id='go' colspan=2>Go</td>
</tr>
</table>
CSS:
td {
border: 1px solid black;
}
#go {
text-align: center;
cursor: pointer;
background: #aaa;
}
Is that possible to set the position of the Go
cell 10px below the current position ?
I tried to play with margin-top
and cellspacing
but it didn't help.
Is that possible to do that ?