小编use*_*533的帖子

当我在IE6中最小化时内容中断

我知道这IE6已经过时,但我的客户仍然使用IE6.
此项目的内容片段必须是百分比缩放,但是当内容的高度很长并且用户决定最小化浏览器时,内容片段会跳到侧栏的底部.

dashboard_content内容较长时的代码

CSS代码:

#outer-box {
    width:100%;
    height: 100%;
    position: relative;
    overflow: auto;
    float: right;
}

#inner-box-1 {
    width: 225px;
    height: 100%;
    background-color:#253740;
    float:right;
}

#inner-box-2 {
   height: 100%;
   direction: rtl;
   overflow:auto;
   *overflow: inherit;
}

.header {
    width: 100%;
    height: 100px;
    background: url('imgs/pattern.jpg') repeat-x;
}

.dashboard_main_menu_holder {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-bottom: 1px solid #d0d0d0;
}

.dashboard_content {
    width: 98%;
    margin: 10px;
}
Run Code Online (Sandbox Code Playgroud)

HTML代码:

<div id ="outer-box">
    <div id="inner-box-1">
        <div class="user_image"></div>
        </div>

    <div id="inner-box-2">
        <div …
Run Code Online (Sandbox Code Playgroud)

html css internet-explorer-6

6
推荐指数
1
解决办法
190
查看次数

标签 统计

css ×1

html ×1

internet-explorer-6 ×1