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>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
레이아웃 가운데 위치하게 만들기화면 가운데 띄워주세요, 화면 가운데 위치하게 해주세요 등의 요청을 처리해보겠어요. 가운데 위치해야할 요소(이하 .centerBox)에 position:fixed 나 position:absolute 를 선언한다. t...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.