fixed - govl2233/project_studyej GitHub Wiki
โ ๋ถ๋ชจ์์๊ด๊ณ๊ฐ ์ฑ๋ฆฝ์ด์๋๊ณ ํ๋ฉด์์ด ๊ธฐ์ค์ด๋จ
ex)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>fixed๋ถ๋ชจ์์๊ด๊ณ์์</title>
<style type="text/css">
.header{
border:1px #f00 solid;
width:100%;
height: 80px;
background-color: rgba(0,0,0,.5);
position: fixed;
top:0;
}
.contents{
border:1px #f0f solid;
width: 500px;
height: 1000px;
margin:90px auto;
}
.top{
border:1px #00f solid;
width: 80px;
height: 200px;
left:50%;
margin-left:260px;
position:fixed;
}
</style>
</head>
<body>
<div class="header"></div>
<div class="contents">
<div class="top"></div>
</div>
<!--contents ์์ top๋ฅผ ๊ฐ์ธ์ค๋๋ top class ์์ top์์น๋ฅผ ์๋ฃ์ด์ค๋๋๋ค.-->
<!--๊ทธ๋ฌ๋ class๊ฐ ๋ฐ๋ก ์ง์ ๋ ๋์๋ stlye์์ topํ๊ทธ์ ์์นtop์ ์ค์ ํด์ค์ผํ๋ค.(fixed๋ absolute๋ ๊ฐ์์ ํ๋ฉด์๊ธฐ์ค์ผ๋ก๋๊ธฐ๋๋ฌธ์)-->
</body>
</html>