日期:2014-05-19  浏览次数:20423 次

问一个TABLE布局的新手问题
我用2个TABLE来设计一个布局,代码如下
<div>
                <table   border= "0px "   width= "300px "   id= "T1 "   style= "height:300px "   cellpadding= "0px "   cellspacing= "0px ">
                        <tr   style= "height:100px ">
                                <td   >
                                </td>
                        </tr>
                        <tr   style= "height:200px ">
                                <td     valign= "top ">
                                        <table   id= "T2 "   width= "100px "   style= "height:100% ">
                                                <tr   style= "height:100px ">
                                                        <td     >
                                                        </td>
                                                </tr>
                                                <tr>
                                                        <td   >
                                                        </td>
                                                </tr>
                                        </table>
                                </td>
                        </tr>
                </table>
&n