1. 개발자를 위한 웹 기술
  2. CSS
  3. CSS 참고서
  4. Properties
  5. overflow-anchor

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

overflow-anchor

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

overflow-anchor CSS 속성은 콘텐츠 이동을 최소화하기 위해 스크롤의 위치를 조정하는 브라우저의 스크롤 앵커링 동작을 선택적으로 비활성화하는 방법을 제공합니다.

스크롤 앵커링 동작은 이를 지원하는 브라우저에서는 기본적으로 활성화되어 있습니다. 따라서 이 속성의 값을 바꾸는 것은 일반적으로 문서나, 혹은 문서의 일부분에서 스크롤 앵커링에 문제가 있다고 느껴질 때에 한하여 동작을 비활성화할 수 있습니다.

시도해 보기

overflow-anchor: auto;
overflow-anchor: none;
<section class="default-example" id="default-example">
 <div class="whole-content-wrapper">
 <button id="playback" type="button">Start lottery</button>
 <p>Magic numbers for today are:</p>
 <div id="example-element"></div>
 </div>
</section>
.whole-content-wrapper {
 display: flex;
 flex-direction: column;
 height: 100%;
 width: 100%;
}
#example-element {
 height: 100%;
 border: 2px dashed dodgerblue;
 padding: 0.75em;
 text-align: left;
 overflow: scroll;
}
#playback {
 font-size: 1em;
 width: 10em;
 height: 4em;
 font-weight: bold;
 margin: 1em auto;
 background-color: aliceblue;
 border: solid 2px dodgerblue;
 border-radius: 5px;
}
#playback:hover {
 border-color: lightseagreen;
}
#playback:active {
 filter: brightness(0.9);
}
window.addEventListener("load", () => {
 const example = document.getElementById("example-element");
 const button = document.getElementById("playback");
 let intervalId;
 function setInitialState() {
 example.innerHTML = "";
 Array.from({ length: 10 }, (_, i) => i).forEach(addContent);
 example.scrollTop = example.scrollHeight;
 }
 function addContent() {
 console.log("adding content");
 const magicNumber = Math.floor(Math.random() * 10000);
 example.insertAdjacentHTML(
 "afterbegin",
 `<div class="new-content-container">New Magic Number: ${magicNumber}</div>`,
 );
 }
 button.addEventListener("click", () => {
 if (example.classList.contains("running")) {
 example.classList.remove("running");
 button.textContent = "Start lottery";
 clearInterval(intervalId);
 } else {
 example.classList.add("running");
 button.textContent = "Stop lottery";
 setInitialState();
 intervalId = setInterval(addContent, 1000);
 }
 });
});

구문

css
/* 키워드 값 */
overflow-anchor: auto;
overflow-anchor: none;
/* 전역 값 */
overflow-anchor: inherit;
overflow-anchor: initial;
overflow-anchor: revert;
overflow-anchor: revert-layer;
overflow-anchor: unset;

auto

스크롤 위치를 조정할 때 요소가 잠재적인 앵커 동작을 합니다.

none

요소가 잠재적인 앵커 동작을 하지 않습니다.

형식 정의

초기값 auto
적용대상all elements
상속 no
계산 값 as specified
Animation type discrete

형식 구문

overflow-anchor = 
auto |
none

예제

스크롤 앵커링 방지하기

문서에서 스크롤 앵커링 동작을 방지하기 위해 overflow-anchor 속성을 사용합니다.

css
* {
 overflow-anchor: none;
}

명세서

Specification
CSS Scroll Anchoring Module Level 1
# exclusion-api

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /