css:表高度不合作

时间:2010-06-23 22:48:52

标签: html css css-tables

我不能把一张桌子“嵌入”另一个任意高/短的div:

#header table.rates {
    float: left;
    width: 210px;
    border: 1px solid black;
    border-collapse: collapse;
    padding:0;
    margin: 5px;
    font-family: Verdana, Helvetica, Arial;
    font-size: 10px;
}

#header {
    clear:both;
    float:left;
    width:100%;
    border-bottom:1px solid #000;
    background: #9c9;
    padding-top: 10px;
    padding-bottom: 10px;
    font: small-caps 40px/40px "Times New Roman", serif;
    color: #282;
}

在html中<div id='header'>...<table class='rates'>...

该表垂直展开标题div,tr, tdtable元素的任何修补都不会让它合作。我错过了什么?

1 个答案:

答案 0 :(得分:0)

对不起这里的网络扰动,问题在于

#header { font: small-caps 40px\40px "Times New Roman", serif; }

将行修改为font: small-caps 40px "Times New Roman", serif;,允许我根据需要访问我的表的高度属性。

里尔