SlideShare a Scribd company logo
1 of 30
FLEX 디자인
오라클자바
Flexible Box Design Layout
■ 정식명칭
■ Flexbox를 사용해서 요소를 가로로 배치하는 방법
■ 익숙해지는데는 시간이 걸리지만, 일단 익숙해지면 작업효율이 향상
■ 반응형 웹사이트 구축에 적합
기본
■ 컨테이너(부모요소)
■ 아이템(자식요소)
기본 콘테이너(부
모 요소)
아이템(자식
요소)
기본(html)
■ <div class="f-container">
■ <div class="f-item">1</div>
■ <div class="f-item">2</div>
■ <div class="f-item">3</div>
■ </div>
기본(css)
■ .f-container {
■ display: flex;
■ }
컨테이너(부모 요소)에
사용되는 프로퍼티
Flex-
direction
아이템 배치
순서 지정
ROW ROW-REVERSE
COLUMN COLUMN-
REVERSE
Flex-direction: row (기본값)
아이템 수평방향 좌~우
■ .f-container {
■ display: flex;
■ flex-direction: row;
■ }
1 2 3
Flex-direction: row-reverse
아이템 수평방향 우~좌
■ .f-container {
■ display: flex;
■ flex-direction: row-reverse;
■ }
3 2 1
Flex-direction: column
아이템 수직방향 상~하
■ .f-container {
■ display: flex;
■ flex-direction: column;
■ }
1
2
3
Flex-direction: column-reverse
아이템 수직방향 하~상
■ .f-container {
■ display: flex;
■ flex-direction: column-reverse;
■ }
3
2
1
Flex-wrap
아이템 랩(자동 줄바꿈) 지정
■ Nowrap
■ Wrap
■ Wrap-reverse
Flex-wrap: nowrap
아이템을 줄바꿈없이 일렬로 배치
■ .f-container {
■ display: flex;
■ flex-wrap: nowrap;
■ }
1 2 3 4 5 6 7
Flex-wrap: wrap
아이템을 줄바꿈해서 복수행으로
위에서부터 아래로 배치
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ }
1 2 3 4
5 6 7
Flex-wrap: wrap-reverse
아이템을 줄바꿈해서 복수행으로
아래에서부터 위로 배치
■ .f-container {
■ display: flex;
■ flex-wrap: wrap-reverse;
■ }
1 2 3 4
5 6 7
Flex-flow
배치방법과 랩(줄바꿈) 지정
■ Flex-direction과 flex-wrap을 한번에 설정하는 방법
■ Flex-flow: {flex-directio값} {flex-wrap값}
Justify-content
아이템 수평방향 위치 지정
■ Flex-start(디폴트)
■ Flex-end
■ Center
■ Space-between
■ Space-round
Justify-content: flex-start(디폴트)
아이템을 왼쪽으로 정렬
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ justify-content: flex-start;
}
1 2 3
Justify-content: flex-end
아이템을 오른쪽으로 정렬
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ justify-content: flex-end;
}
1 2 3
Justify-content: center
아이템을 중앙으로 정렬
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ justify-content: center;
}
1 2 3
Justify-content: space-between
아이템을 균등분할
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ justify-content: space-between;
}
1 2 3
Justify-content: space-around
아이템을 균등분할 (맨 좌우측 아이템 고려)
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ justify-content: space-around;
}
1 2 3
Align-items
아이템 수직 방향 위치 지정
■ Stretch(디폴트)
■ Flex-start
■ Flex-end
■ Center
■ baseline
Align-items: stretch(기본값)
■ 아이템의 상하여백을 다 채우는 것
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ align-items: stretch;
}
Align-items: flex-start
■ 아이템을 위로 정렬하는 것
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ align-items: flex-start;
}
Align-items: flex-end
■ 아이템을 아래로 정렬하는 것
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ align-items: flex-end;
}
Align-items: center
■ 아이템을 상하중앙으로 정렬하는 것
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ align-items: center;
}
여러 속성등을 복합적으로 사용
■ .f-container {
■ display: flex;
■ flex-wrap: wrap;
■ justify-content: center;
■ align-items: center;
■ flex-direction: column;
■ }
아이템(자식요소)에 사용되는 프로퍼
티
■ Order
■ Flex-grow
■ Flex-shrink
■ Flex-basis
■ Flex
■ Align-self

More Related Content

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Flex design