请教:为什么DIV中多出一块空白,还有个>

#container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#content {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.content_left {
    width: 70%;
    float: left;
    border: #060 1px solid;
}

.content_right {
    margin-right: 10px;
    border: #960 1px solid;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
    height: auto;
    overflow: hidden;
}

    table td{
        border: 1px solid #cad9ea;
        color: #666;
        height: 30px;
    }
    table tr:nth-child(odd) {
        background: #fff;
    }

    table tr:nth-child(even) {
        background: #F5FAFA;
    }

<table width="90%" class="table">
    <tr>
        <td>
            这是文字这是文字这是文字这是文字这是文字
        </td>
        <td>
            时间
        </td>
    </tr>
    <tr>
        <td>
            这是文字这是文字这是文字这是文字这是文字
        </td>
        <td>
            时间
        </td>
    </tr>
</table>>

 

最后一个table多了>