我遇到问题,要对齐表格单元格中的复选框
<table style="empty-cells:hide;" border="1" cellpadding="1" cellspacing="1">
<tr>
<td valign="top">
test 1 -
<input type="checkbox" name="query_myTextEditBox">
test 2 -
myTextEditBox
<select size ="3" name="myTextEditBox_compare_operator">
<option value="1">option 1</option>
<option value="2">option 2</option>
</select>
</td>
<td valign="top">
<input type="text" value="my text" name="myTextEditBox">
</td>
</tr>
出于某些特定原因,我不想将文字和文字分开。复选框到2个单元格
我确实看过这篇文章How to center a checkbox in a table cell?,但它对我不起作用。
答案 0 :(得分:0)
将style="vertical-align:top"
添加到<select>
元素。