Snippet/CSS ์Šค๋‹ˆํŽซ

๐Ÿš€ position fixed + absolute ๊ฐ™์ด ์ ์šฉํ•˜๋Š” ๋ฒ•

์ธํŒŒ_ 2022. 2. 18. 11:21

fixed-absolute

position fixed + absolute ๊ฐ™์ด ์ ์šฉํ•˜๋Š” ๋ฒ•

์›นํŽ˜์ด์ง€๋ฅผ ๋งŒ๋“ค๋•Œ, ์–ด๋–ค ์š”์†Œ๋ฅผ ๊ณ ์ •(fixed)ํ–ˆ๋Š”๋ฐ, ๊ธฐ๋ณธ์ ์œผ๋กœ ์ฐจ์ง€ํ•˜๊ณ  ์žˆ๋Š” ๊ณต๊ฐ„์„ ์—†์• ๊ณ (absolute)

์™„์ „ํžˆ ์ž์œ ๋กœ์šด ์š”์†Œ๋กœ์„œ ๋‹ค๋ฃจ๊ณ  ์‹ถ์„ ๋•Œ๊ฐ€ ์žˆ๋‹ค.

๋ณธ ๋ธ”๋กœ๊ทธ์˜ ์šฐ์ธกํ•˜๋‹จ ๊ตฌ๋…์นด๋“œ ์—˜๋ฆฌ๋จผํŠธ ์—ญ์‹œ ์ด๋Ÿฐ์‹์œผ๋กœ ๊ตฌํ˜„๋˜์–ด์žˆ๋‹ค.

์šฐ์„  fixed์™€ absolute๋Š” position์˜ ๊ฐœ๋ณ„์†์„ฑ์œผ๋กœ์„œ, ์›๋ž˜๋Š” ๋‘˜์ด ๋™์‹œ์— ์ ์šฉ์ด ๋ถˆ๊ฐ€๋Šฅํ•˜๋‹ค.

ํ•˜์ง€๋งŒ ํŠธ๋ฆญ์„ ์ด์šฉํ•ด์„œ ๋‘˜์˜ ํ•ฉ์„ฑ์„ ๊ตฌํ˜„ํ• ์ˆ˜ ์žˆ๋‹ค.

๋ถ€๋ชจ ์—˜๋ฆฌ๋จผํŠธ๋ฅผ fixed์ฒ˜๋ฆฌํ•˜๊ณ  ๊ทธ์•ˆ์˜ ์ž์‹ ์—˜๋ฆฌ๋จผํŠธ๋ฅผ absolute์ฒ˜๋ฆฌํ•˜๋ฉด ๋œ๋‹ค.

<!-- ๋ถ€๋ชจ ์—˜๋ฆฌ๋จผํŠธ -->
<div class="position">

  <!-- ์ž์‹ ์—˜๋ฆฌ๋จผํŠธ -->
  <div class="row" style="background-color:skyblue; width:200px; ">
      <!-- ๋‚ด์šฉ -->
  </div>

</div>
/* ๋ถ€๋ชจ ์—˜๋ฆฌ๋จผํŠธ */
.position {     
  position: fixed;    
  height: 100%;
}

/* ์ž์‹ ์—˜๋ฆฌ๋จผํŠธ */
.position .row {
  position: absolute;    
  left: 50px; /* ์—˜๋ฆฌ๋จผํŠธ ์œ„์น˜ */
  top: 50px;
}

See the Pen Untitled by barzz12 (@inpaSkyrim) on CodePen.