Cake.generic.css的CSS问题:不能减少分区内表格的宽度

时间:2011-09-27 21:07:08

标签: html css cakephp cakephp-1.3

我有两个分支,浮动:左;

div#loadwhat {
    float: left;
    width: 78%;
    padding-right: 5px;
}

div#id_div_rightside {
    float: left;
    width: 20%;
    height: 100%;
    border-left:solid thin #ff9900;
}

但是loadwhat分区内的表比loadwhat分区宽得多。那是为什么?

我想减少表格的宽度。我试图设置宽度:xx表,但它不起作用。

在cake.generic.css

table {
    background: #fff;
    border-right:0;
    clear: both;
    color: #333;
    margin-bottom: 10px;
    width: 100%;
}

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

也许尝试删除表格宽度并添加table-layout:fixed;。这可能会使许多浏览器中的行均匀。以下是更多详细信息:http://reference.sitepoint.com/css/table-layout