如何在表格单元格中居中复选框?

时间:2013-01-19 05:17:44

标签: html html-table

我遇到问题,要对齐表格单元格中的复选框

<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>

my test on jsfiddle.net

出于某些特定原因,我不想将文字和文字分开。复选框到2个单元格

我确实看过这篇文章How to center a checkbox in a table cell?,但它对我不起作用。

1 个答案:

答案 0 :(得分:0)

style="vertical-align:top"添加到<select>元素。