로컬 CSS 미디어쿼리 생성기

실시간 미리보기로 반응형 CSS 미디어쿼리 만들기

화면 너비와 접근성 조건을 고르고 바로 붙여 넣을 수 있는 @media 블록을 복사하세요.

CSS 준비 완료

생성된 미디어쿼리

@media screen and (min-width: 768px) {
  /* Add responsive styles here */
}

모든 처리는 브라우저에서 진행됩니다. 아무것도 업로드하거나 저장하지 않습니다.

반응형 규칙을 관리하기 쉽게

Use min-width for mobile-first additions and max-width when a rule should stop above a size.

Combine width with orientation or reduced-motion preferences when the behavior depends on more than viewport size.

Keep the generated condition focused, then add the declarations your component needs inside the block.

미디어쿼리 질문

What does min-width mean?

The rule matches when the viewport is at least the chosen width.

Can I leave both widths empty?

Yes. The tool creates a valid media type block ready for your declarations.

Why include reduced motion?

It lets you adapt animations for people who request less motion in their operating system.