我有两个分支,浮动:左;
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%;
}
我该如何解决这个问题?
答案 0 :(得分:1)
也许尝试删除表格宽度并添加table-layout:fixed;
。这可能会使许多浏览器中的行均匀。以下是更多详细信息:http://reference.sitepoint.com/css/table-layout