View in English

  • Apple Developer
    • 시작하기

    시작하기 탐색

    • 개요
    • 알아보기
    • Apple Developer Program

    알림 받기

    • 최신 뉴스
    • Hello Developer
    • 플랫폼

    플랫폼 탐색

    • Apple 플랫폼
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    피처링

    • 디자인
    • 배포
    • 게임
    • 액세서리
    • 웹
    • 홈
    • CarPlay
    • 기술

    기술 탐색

    • 개요
    • Xcode
    • Swift
    • SwiftUI

    피처링

    • 손쉬운 사용
    • 앱 인텐트
    • Apple Intelligence
    • 게임
    • 머신 러닝 및 AI
    • 보안
    • Xcode Cloud
    • 커뮤니티

    커뮤니티 탐색

    • 개요
    • Apple과의 만남 이벤트
    • 커뮤니티 주도 이벤트
    • 개발자 포럼
    • 오픈 소스

    피처링

    • WWDC
    • Swift Student Challenge
    • 개발자 이야기
    • App Store 어워드
    • Apple 디자인 어워드
    • 문서

    문서 탐색

    • 문서 라이브러리
    • 기술 개요
    • 샘플 코드
    • 휴먼 인터페이스 가이드라인
    • 비디오

    릴리즈 노트

    • 피처링 업데이트
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • 다운로드

    다운로드 탐색

    • 모든 다운로드
    • 운영 체제
    • 애플리케이션
    • 디자인 리소스

    피처링

    • Xcode
    • TestFlight
    • 서체
    • SF Symbols
    • Icon Composer
    • 지원

    지원 탐색

    • 개요
    • 도움말
    • 개발자 포럼
    • 피드백 지원
    • 문의하기

    피처링

    • 계정 도움말
    • 앱 심사 지침
    • App Store Connect 도움말
    • 새로 추가될 요구 사항
    • 계약 및 지침
    • 시스템 상태
  • 빠른 링크

    • 이벤트
    • 뉴스
    • 포럼
    • 샘플 코드
    • 비디오
 

비디오

메뉴 열기 메뉴 닫기
  • 컬렉션
  • 전체 비디오
  • 소개

더 많은 비디오

  • 소개
  • 요약
  • 코드
  • CSS Grid Lanes 알아보기

    다양한 형태와 크기의 콘텐츠를 수용할 수 있는 적응형 웹 레이아웃을 빌드하세요. Grid Lanes를 사용하여 간단한 CSS로 다양한 형태의 요소를 깔끔하고 유연한 디자인으로 배열하는 방법을 살펴보세요. 또한 흐름 허용치가 레이아웃을 유연하게 유지하면서 접근성을 향상하는 데 어떻게 도움이 되는지 알아보세요.

    챕터

    • 0:00 - Introduction
    • 1:35 - CSS Flexbox and Grid
    • 2:45 - CSS Grid Lanes
    • 3:55 - Build a Grid Lanes container
    • 4:31 - Implement brick variation
    • 4:49 - Experiment with different layouts
    • 5:40 - Control individual items
    • 7:05 - Flow Tolerance
    • 8:46 - Web Inspector
    • 9:20 - Next steps

    리소스

    • WebKit.org - CSS Grid Lanes Field Guide
    • WebKit.org – Report issues to the WebKit open-source project
    • Submit feedback
      • HD 비디오
      • SD 비디오

    관련 비디오

    WWDC26

    • HTML select 요소 다시 살펴보기
    • Safari 27용 WebKit의 새로운 기능
  • 비디오 검색…
    • 3:58 - Create a Grid Lanes Container

      .container {
      	display: grid-lanes;
      }
    • 4:02 - Create a Grid Lanes Container

      .container {
      	display: grid-lanes;
        grid-template-columns: repeat(3, 1fr);
      }
    • 4:26 - Create a Grid Lanes Container

      .container {
      	display: grid-lanes;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }
    • 4:33 - Implement a Brick Variation

      .container {
      	display: grid-lanes;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }
    • 4:36 - Implement a Brick Variation

      .container {
      	display: grid-lanes;
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
      }
    • 4:58 - Experiment with different layouts

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
    • 5:02 - Experiment with different layouts

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 10px;
      }
    • 5:10 - Experiment with different layouts

      .container {
      	display: grid-lanes;
        grid-template-columns:
          repeat(auto-fill,
            minmax(200px, 1fr));
        gap: 10px;
      }
    • 5:24 - Experiment with different layouts

      .container {
      	display: grid-lanes;
        grid-template-columns:
          repeat(auto-fill,
            minmax(8rem, 1fr)
            minmax(14rem, 2fr);
        gap: 10px;
      }
    • 5:45 - Control Individual Items

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
    • 5:59 - Control Individual Items

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
      
      .item {
        grid-column: span 2;
      }
    • 6:07 - Control Individual Items

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
      
      .item {
        grid-column: 2 / span 2;
      }
    • 6:22 - Integrate Subgrid

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
      
      .item {
        grid-column: span 2;
      }
    • 6:34 - Integrate Subgrid

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
      
      .item {
        display: grid-lanes;
        grid-template-columns: subgrid;
        grid-column: span 2;
      }
    • 6:48 - Integrate Subgrid

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
      }
      
      .item {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: span 2;
      }
    • 8:37 - Improve item positioning

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        flow-tolerance: normal;
      }
    • 8:41 - Improve item positioning

      .container {
      	display: grid-lanes;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        flow-tolerance: 2.1em;
      }
    • 0:00 - Introduction
    • Learn about CSS Grid Lanes, a new layout mode for masonry-style "waterfall" and "brick wall" design patterns in just a few lines of CSS, available now in Safari 26.4.

    • 1:35 - CSS Flexbox and Grid
    • Understand what a layout mode actually does and see why Flexbox and Grid fall short for content with mixed aspect ratios, where stretching, zooming, and cropping all distort your design.

    • 2:45 - CSS Grid Lanes
    • Learn how Grid Lanes fits between Grid and Flexbox, structuring one axis while leaving the other free so items pack tightly without distortion. Each item lands in whichever column leaves it closest to the top, and the same rules apply to images, text, or any other content.

    • 3:55 - Build a Grid Lanes container
    • Build your first Grid Lanes layout in three lines of CSS: `display: grid-lanes`, `grid-template-columns` with `fr` units to divide available space into fractions, and `gap` to space items apart.

    • 4:31 - Implement brick variation
    • Flip the layout 90 degrees by swapping `grid-template-columns` for `grid-template-rows` to flow items horizontally into a brick-wall layout. Grid Lanes structures one direction at a time — pick columns or rows, not both.

    • 4:49 - Experiment with different layouts
    • Use the full power of CSS track sizing inside Grid Lanes: unequal column widths, `auto-fill` with `minmax()` to let the browser choose how many columns fit, and repeating patterns of narrow and wide columns.

    • 5:40 - Control individual items
    • Shape individual items using familiar Grid properties — `grid-column: span 2` to stretch an item across columns, explicit column placement (rows are still chosen for you), and `grid-template-columns: subgrid` to align nested content with the parent layout.

    • 7:05 - Flow Tolerance
    • Discover why the shortest-column rule can produce visually pleasing layouts that confuse keyboard users when DOM order and visual order diverge. The `flow-tolerance` property loosens the rule so items prefer to fill earlier columns when heights are similar, with a default of `1em` you can tune to your content.

    • 8:46 - Web Inspector
    • Debug Grid Lanes layouts visually with Safari Web Inspector. Turn on the overlay to see column and row lines, gaps, and order numbers projected over each item — useful when tuning `flow-tolerance` or diagnosing surprising placements.

    • 9:20 - Next steps
    • Explore the WebKit team's Grid Lanes Field Guide for interactive demos, try Grid Lanes in your own projects (available in Safari 26.4), and share feedback with the team. To see what else is coming to Safari, watch "What's new in WebKit for Safari 27."

Developer Footer

  • 비디오
  • WWDC26
  • CSS Grid Lanes 알아보기
  • 메뉴 열기 메뉴 닫기
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    메뉴 열기 메뉴 닫기
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • SF Symbols
    메뉴 열기 메뉴 닫기
    • 손쉬운 사용
    • 액세서리
    • Apple Intelligence
    • 앱 확장 프로그램
    • App Store
    • 오디오 및 비디오(영문)
    • 증강 현실
    • 디자인
    • 배포
    • 교육
    • 서체(영문)
    • 게임
    • 건강 및 피트니스
    • 앱 내 구입
    • 현지화
    • 지도 및 위치
    • 머신 러닝 및 AI
    • 오픈 소스(영문)
    • 보안
    • Safari 및 웹(영문)
    메뉴 열기 메뉴 닫기
    • 문서(영문)
    • 튜토리얼
    • 다운로드
    • 포럼(영문)
    • 비디오
    메뉴 열기 메뉴 닫기
    • 지원 문서
    • 문의하기
    • 버그 보고
    • 시스템 상태(영문)
    메뉴 열기 메뉴 닫기
    • Apple Developer
    • App Store Connect
    • 인증서, 식별자 및 프로파일(영문)
    • 피드백 지원
    메뉴 열기 메뉴 닫기
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program(영문)
    • Mini Apps Partner Program
    • News Partner Program(영문)
    • Video Partner Program(영문)
    • Security Bounty Program(영문)
    • Security Research Device Program(영문)
    메뉴 열기 메뉴 닫기
    • Apple과의 만남
    • Apple Developer Center
    • App Store 어워드(영문)
    • Apple 디자인 어워드
    • Apple Developer Academy(영문)
    • WWDC
    최신 뉴스 읽기.
    Apple Developer 앱 받기.
    Copyright © 2026 Apple Inc. 모든 권리 보유.
    약관 개인정보 처리방침 계약 및 지침