-3

我有一个简单的 div,这里是代码:

<html>
<head>
    <title>Head</title>
<style>
div.ex {
    height:700px;
    width:150px;
    padding:10px;
    border:1px solid gray;
    margin-bottom:10px;
    float:left;
    text_color:#ffffff;

}

</style>
</head>
<body>
<div class="ex">

</div>
</body>

现在,我有一张桌子,我想为此使用所有空间。我该怎么做?

4

1 回答 1

1

如果我让你正确地尝试这个......

<html>
    <head>
        <title>Head</title>
<style>
div.ex {
    height:700px;
    width:150px;
    <!--padding:10px;-->
    border:1px solid gray;
    margin-bottom:10px;
    float:left;
    text_color:#ffffff;

}
table{
width:100%;
height:100%;
}
</style>
    </head>
    <body>
    <div class="ex">
        <table>
        <tr>
            <td>
            test
            </td>
        </tr>
        </table>
    </div>
    </body>
</html>

由于要使用整个 div 空间,因此请从 div 中删除填充。

于 2013-07-06T13:35:02.847 回答