不能让div触摸屏幕的底部。 e,g高度不是100%

时间:2013-11-04 10:43:36

标签: css html

我正在寻找修复div,说'this div'除了这个div之外一切都触及底部,这是因为我上面有2个div,带有徽标和图标等,它推出'这个div'大约100像素左右。

http://2click4.com/message3.php

这是链接

#msg_names {
    height: 100% !important;
    height: 100%;
    border: 1px solid #ccc;
    position: relative;
    top: 0;
    bottom: 0;
    width:150px;
}

这是我对div的css

1 个答案:

答案 0 :(得分:-1)

尝试将“容器”div位置从“绝对”更改为“固定”,如下所示: -

#container {
width: 100%;
min-width: 600px;
height: 100%;
min-height: 100%;
position: fixed;
}