css 호 환 위치: fixed

23936 단어 position
<!--
*{margin:0; padding:0; border:0;}

#d{
background:url(images/index_bg.jpg) repeat-y scroll center top transparent;
left: 50%;
margin-left: -500px;
position: relative;
width: 1000px;
}

.top,.main,.bottom,.fixed{text-align:center;}

.top{
background-color:#C30;
height: 101px;
padding-top: 4px;
}

.main{
width:980px;
margin:20px auto 0;
background-color:#FC0;
padding:10px;
}
.main .cont{height:900px;}

.main .cont .contL,.main .cont .contR{
float:left;
}

.main .cont .contL{
width:750px;
background-color:#93C;
height:900px;
margin-right:15px;
}

.main .cont .contR{
width:210px;
background-color:#33F;
height:500px;
}

.bottom{
background-color:#00F;
clear: both;
color: #373737;
height: 192px;
margin: 10px auto;
overflow: hidden;
padding-top: 20px;
width: 1000px;
}

.fixed{
width:190px;
line-height:40px;
padding-top:20px;
padding-bottom:20px;
background-color:#999;
position:fixed;
left:65%;
top:160px;
z - index: 999; / * DIV 가 항상 맨 앞 에 있 도록 다른 요소 에 가 려 지지 않 습 니 다 * / & \ # 13;
position: absolute; / * 여기 서 시 작 된 2 개의 코드 는 ie6 가 position: fixed 를 호 환 하지 않 기 위해 쓴 * / & \ # 13 입 니 다.
top: expression (eval (document. documentElement. scrollTop + 160); / * 스크롤 높이 + 요소 의 원래 높이 * / & \ # 13 를 가 져 와 야 합 니 다.
}
-->
나 는 머리 다.
나 는 주체 다.
내용 이 있 는 만큼 나 는 키 가 크다.
 
나 는 발.
스크롤 바 를 따라 스크롤 하 겠 습 니 다.
스크롤 바 를 따라 스크롤 하 겠 습 니 다.
스크롤 바 를 따라 스크롤 하 겠 습 니 다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible"><!--           IE7-->
<title>     </title>
<style type="text/css">
*{margin:0; padding:0; border:0;}

#d{
    background:url(images/index_bg.jpg) repeat-y scroll center top transparent;
    left: 50%;
    margin-left: -500px;
    position: relative;
    width: 1000px;
    }
    
.top,.main,.bottom,.fixed{text-align:center;}

.top{
    background-color:#C30;
    height: 101px;
    padding-top: 4px;    
}

.main{
    width:980px;
    margin:20px auto 0;
    background-color:#FC0;
    padding:10px;
}
.main .cont{height:900px;}

.main .cont .contL,.main .cont .contR{
    float:left;
}

.main .cont .contL{
    width:750px; 
    background-color:#93C;
    height:900px; 
    margin-right:15px;
}

.main .cont .contR{
    width:210px; 
    background-color:#33F;
    height:500px;
    }
    
.bottom{
    background-color:#00F;
    clear: both;
    color: #373737;
    height: 192px;
    margin: 10px auto;
    overflow: hidden;
    padding-top: 20px;
    width: 1000px;    
}

.fixed{
    width:190px;
    line-height:40px;
    padding-top:20px;
    padding-bottom:20px;
    background-color:#999;
    position:fixed;
    left:65%;
    top:160px;
    z-index:999;/*   DIV      ,        */
    _position:absolute;/*     2     ie6   position:fixed;   */
    _top:expression(eval(document.documentElement.scrollTop+160));/*          +       */
}
</style>
</head>

<body>
    <div id="d">
        <div class="top">   </div>
        <div class="main">
            <br /><br />
        <div class="cont">
            <div class="contL"></div>
            <div class="contR"></div>
        </div>
        </div>
        <div class="bottom">   </div>
    </div>
    <div class="fixed">
            <br />
            <br />
            <br />
    </div>
</body>
</html>

좋은 웹페이지 즐겨찾기