"매 Google 의 ranking signal 으로서 의 매 user perceived UX metric". 매 2021 Page Experience update 매 mobile 적용, 매 2022 desktop 확장, 매 2024-03 매 FID → INP 교체. 매 2026 의 매 core signal: LCP / INP / CLS + HTTPS / mobile-friendly / no-intrusive-interstitial.
매 핵심
매 Core Web Vitals (2026)
LCP (Largest Contentful Paint): 매 viewport 의 매 largest element render 시간. Good < 2.5s.
INP (Interaction to Next Paint): 매 모든 interaction 의 매 max latency (75th percentile). Good < 200ms.
CLS (Cumulative Layout Shift): 매 unexpected layout shift 누적 score. Good < 0.1.
매 추가 signal
HTTPS 적용.
Mobile-friendly (responsive).
No intrusive interstitial (popup ad coverage).
(deprecated 2024-03) Safe Browsing — 매 separate signal.
매 측정 source
CrUX (Chrome UX Report): 매 28-day rolling RUM data, 매 actual ranking signal.
asyncfunctionprocessLargeList(items: Item[]){for(leti=0;i<items.length;i++){process(items[i]);if(i%50===0){awaitscheduler.yield();// 매 2026 Scheduler API
}}}
4. CLS 방지 — explicit dimensions
<imgsrc="/photo.webp"width="800"height="600"alt="..."><iframesrc="..."width="560"height="315"></iframe><!-- font swap reserve space --><style>@font-face{font-family:"Inter";src:url(/inter.woff2)format("woff2");size-adjust:100%;ascent-override:90%;font-display:swap;}</style>
언제: 매 SEO-driven traffic 매 critical (e-commerce, news, blog). 매 ranking 매 stagnant + 매 lab metric 양호 한 경우.
언제 X: 매 internal tool / B2B SaaS (organic search 매 minor). 매 ranking 의 매 dominant signal 의 X — 매 content 매 first.
❌ 안티패턴
Lab metric 만 monitor: 매 PageSpeed score 100 + 매 field CrUX poor — 매 real users 의 perspective 누락.
75th percentile 무시: 매 mean / median 매 deceiving — 매 long tail 매 ranking 결정.
INP 의 무시: 매 2024-03 부터 매 FID 대체 — 매 legacy site 매 INP regression 매 routine.
CLS shift container 매 transform 으로 회피: 매 actual layout 매 jarring — 매 reserved space 가 매 정답.
Preload 의 abuse: 매 모든 image preload → 매 critical asset 매 starve.
🧪 검증 / 중복
Verified (web.dev/vitals 2026-05, Google Search Central 공식 docs, CrUX dataset).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — INP-replaces-FID + 2026 Scheduler API yield pattern