0

これが私のコードです:

<form id="form1" style="height: 800px; width:1000px" >
<table style="width: 90%; height: 193;">
    <tr>
        <td class="style4">
            <table style="width: 100%; height: 701px;">
                <tr>
                    <td style="height: 587px; width: 629px;" colspan="4" >
                        <div id="tableTree" style="height:600px;">
                            <table style="width: 150px;">
                                <div id="treeboxbox_tree" style="width:280px; height:100%; ">
                </div>
                            </table>
                        </div>
                    </td>
                </tr>
                <tr>
                    <td >
                        <input type="button" value="Add" id="btnAdd" onclick="return someMethod()" />
                    </td>
                    <td >
            //other button
                    </td>
                    <td >
            //other button
                    </td>
                </tr>
            </table>
        </td>

        <div>
            <td>
                <table width="100%" id="smth">
                    <div style="float:left"><%Html.RenderPartial("Something"); %></div>
                </table>
            </td>
        </div>

    </tr>
</table>
</form>

ボタンをクリックするまで、smthは表示されません。しかし、smth の高さが非常に大きいため、smth の中間である style4 を持つ td が下がります。とてもイライラします。それを解決する方法は?

4

1 に答える 1

1

td で垂直方向の配置がずれているということですか?

<td class="style4">

に変更します

<td class="style4" valign="top">

またはstyle4に追加

vertical-align: top;

定義しているhtmlのバージョンがわからない...

于 2012-04-04T14:37:20.940 に答える