根据td更改表高度

时间:2013-08-03 10:58:12

标签: html asp.net

我在td有一张桌子

<td style="height:100%">
   <table>

   <table>
<td>

td不固定,高度可变,我想根据td设置表高。

请提供宝贵的建议以实现这一目标。

3 个答案:

答案 0 :(得分:0)

这是一个有效的静态代码:

 <!DOCTYPE html>
<html>
<head>

</head>
<body>

<table border="1">
 <tr>
    <th>1</th>
    <th>2</th>
 </tr>
 <tr>
    <td height="100px">
        <table border="1" height="100px">
            <tr>
                <td>1.1</td>
                <tr>
                <td>1.2</td>
                </tr>
            </tr>
        </table>
    </td>
    <td>3</td>
 </tr>
 <tr>
    <td height="100px">4</td>
    <td>5</td>
 </tr>
</table>

</body>
</html>

我正努力让它尽可能地充满活力。 希望这会对你有所帮助。

答案 1 :(得分:0)

不只是像你为td所做的那样设置表的高度吗?

<td style="height:100%;">
   <table style="height:100%;">

   <table>
<td>

答案 2 :(得分:0)

问题是你的嵌套表里面没有:

<tr><td>content</td></tr>

举个例子:FIDDLE