-1

我的网站布局有问题;我已经搜索了所有内容,但找不到答案。在不搞砸 FF 和 IE 的布局的情况下,我也尽可能地摆弄着。基本上,我想要 2 个表,每个表都在单独的 div 中(或者只是彼此分开),并且它们的高度为大约 30 - 40% 并且在需要时有滚动条。

我的 CSS 文件的代码:

2 个表#Manifestaties& #detail_info,分别放置在一个单独的 div 中,在一个 div 内#resultlist

#resultlist {
height: 80%;
left: 8%;
position: absolute;
top: 20%;
width: 35%;
}

#Manifestaties {
display: block;
height: 30%;
overflow-y: auto;
position: absolute;
top: 0;
width: 100%;
}

#detail_info {
display: block;
height: 30%;
overflow-y: auto;
position: absolute;
top: 35%;
width: 100%;
} 

网站链接:http: //onderzoek.knokke-heist.be/extern/ww/manifest.html

谢谢你的帮助!

编辑 自己修复它,IE 将高度和宽度解释为最小高度、最小宽度。因此将代码更改为: ... min-height: 35%; 高度:自动;

当我使用 IE 9 或更高版本时,我的 html 中的条件 css 会选择不同的 css 文件。

4

1 回答 1

0

问题:IE 将高度和宽度解释为最小高度、最小宽度。

答:修改代码为:max-height: 35%;高度:自动;
从高度:35%;

于 2013-07-29T12:27:50.783 回答