-1

我正在寻找修复显示“这个 div”的 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

4

1 回答 1

-1

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

#container {
width: 100%;
min-width: 600px;
height: 100%;
min-height: 100%;
position: fixed;
}
于 2013-11-04T10:55:02.423 回答