SlideShare a Scribd company logo
Flexbox in CSS
{
}
...
Flexbox basically a layout module of CSS
Before the Flexbox Layout module, there were four layout modes:
• Table, for two-dimensional table data
• Positioned, for explicit position of an element
} ..
First of all we need a container where all the elements are direct
child of the container.
Property of Container.
• flex-direction
• flex-wrap
• flex-flow
• justify-content
• align-items
• align-content
The flex-direction Property
The flex-direction property defines in which direction the
container wants to stack the flex items.
} ..
flex-direction: column - stacks the flex items vertically (from top to
bottom).
|| column-reverse;- value stacks the flex items vertically (but from
bottom to top)
|| row;- value stacks the flex items horizontally (from left to right)
row-reverse;- stacks the flex items horizontally (but from right to
left)
The flex-wrap Property
The flex-wrap property specifies whether the flex items should
wrap or not.
} ..
flex-wrap: wrap;- specifies that the flex items will wrap if necessary
|| nowrap;- specifies that the flex items will not wrap (this is default)
|| wrap-reverse;- specifies that the flexible items will wrap if
necessary, in reverse order.
row-reverse;- stacks the flex items horizontally (but from right to left)
**The flex-flow property is a shorthand property for setting both the
flex-direction and flex-wrap properties.
flex-flow: row wrap;
The justify-content Property
The justify-content property is used to align the flex items:
} ..
justify-content: center; aligns the flex items at the center of the
container
|| flex-start; aligns the flex items at the beginning of the container
(this is default)
|| flex-end; aligns the flex items at the end of the container.
|| space-around; displays the flex items with space before, between,
and after the lines.
|| space-between; displays the flex items with space between the lines
The align-items Property
The align-items property is used to align the flex items.
} ..
align-items: center; aligns the flex items in the middle of the
container
|| flex-start; aligns the flex items at the top of the container
|| flex-end; aligns the flex items at the bottom of the container
|| stretch; stretches the flex items to fill the container (this is
default)
CSS Flex Items
The align-content property is used to align the flex lines.
} ..
The flex item properties are:
• order
• flex-grow
• flex-shrink
• flex-basis
• flex
• align-self
}
...
The order Property: The order property specifies the order of the
flex items.
<div class="flex-container">
<div style="order: 3">1</div>
<div style="order: 2">2</div>
<div style="order: 4">3</div>
<div style="order: 1">4</div>
</div>
The flex-grow Property: The flex-grow property specifies how much a
flex item will grow relative to the rest of the flex items.
<div class="flex-container">
<div style="flex-grow: 1">1</div>
<div style="flex-grow: 1">2</div>
<div style="flex-grow: 8">3</div>
</div>
Make a Image
Gallery
{
}
...
What is The Hero Section.
As the first thing people see when they visit your
website, a hero section is the area that immediately
shows up on the screen under your logo and menu.
• What you have to offer
• Why people should trust you
• The benefits of working with you
• What action they should take next
Any Questions?
{
} ..
..
Rashedul Islam Emon
email: emonrasedul@gmail.com
Phone: +8801837995395
{
} ..
..

More Related Content

Similar to digital swifton

CSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS LayoutCSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS Layout
Rachel Andrew
 
Intro to Flexbox with Real Word Examples
Intro to Flexbox with Real Word ExamplesIntro to Flexbox with Real Word Examples
Intro to Flexbox with Real Word Examples
Jennifer Bland
 
2. react - native: basic
2. react - native: basic2. react - native: basic
2. react - native: basic
Govind Prasad Gupta
 
CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)
Woodridge Software
 
#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]
Dalibor Gogic
 
css.pdf
css.pdfcss.pdf
Flexbox and Grid Layout
Flexbox and Grid LayoutFlexbox and Grid Layout
Flexbox and Grid Layout
Rachel Andrew
 
How to choose best containers in STL (C++)
How to choose best containers in STL (C++)How to choose best containers in STL (C++)
How to choose best containers in STL (C++)
Sangharsh agarwal
 
Building Layouts with CSS
Building Layouts with CSSBuilding Layouts with CSS
Building Layouts with CSS
Boris Paillard
 
Flexbox and Grid Layout: How you will structure layouts tomorrow.
Flexbox and Grid Layout: How you will structure layouts tomorrow.Flexbox and Grid Layout: How you will structure layouts tomorrow.
Flexbox and Grid Layout: How you will structure layouts tomorrow.
Diego Eis
 
Future Layout & Performance
Future Layout & PerformanceFuture Layout & Performance
Future Layout & Performance
Rachel Andrew
 
But what about old browsers?
But what about old browsers?But what about old browsers?
But what about old browsers?
Rachel Andrew
 
CSS Flexbox and Grid Layouts
CSS Flexbox and Grid LayoutsCSS Flexbox and Grid Layouts
CSS Flexbox and Grid Layouts
Anantha kumar
 
Is Flexbox the Future of Layout?
Is Flexbox the Future of Layout?Is Flexbox the Future of Layout?
Is Flexbox the Future of Layout?
jameswillweb
 
MTA css layouts
MTA css layoutsMTA css layouts
MTA css layouts
Dhairya Joshi
 
Understanding Flexbox Layout in React Native.pdf
Understanding Flexbox Layout in React Native.pdfUnderstanding Flexbox Layout in React Native.pdf
Understanding Flexbox Layout in React Native.pdf
Katy Slemon
 
Introduction to flexbox
Introduction  to  flexboxIntroduction  to  flexbox
Introduction to flexbox
Jyoti Gautam
 
Flexbox Will Shock You!
Flexbox Will Shock You!Flexbox Will Shock You!
Flexbox Will Shock You!
Scott Vandehey
 
WEBD 162: display property, Float and Clear
WEBD 162: display property, Float and ClearWEBD 162: display property, Float and Clear
WEBD 162: display property, Float and Clear
palomateach
 
CSS3 Flexbox & Responsive Design
CSS3 Flexbox & Responsive DesignCSS3 Flexbox & Responsive Design
CSS3 Flexbox & Responsive Design
Arash Milani
 

Similar to digital swifton (20)

CSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS LayoutCSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS Layout
 
Intro to Flexbox with Real Word Examples
Intro to Flexbox with Real Word ExamplesIntro to Flexbox with Real Word Examples
Intro to Flexbox with Real Word Examples
 
2. react - native: basic
2. react - native: basic2. react - native: basic
2. react - native: basic
 
CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)
 
#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]
 
css.pdf
css.pdfcss.pdf
css.pdf
 
Flexbox and Grid Layout
Flexbox and Grid LayoutFlexbox and Grid Layout
Flexbox and Grid Layout
 
How to choose best containers in STL (C++)
How to choose best containers in STL (C++)How to choose best containers in STL (C++)
How to choose best containers in STL (C++)
 
Building Layouts with CSS
Building Layouts with CSSBuilding Layouts with CSS
Building Layouts with CSS
 
Flexbox and Grid Layout: How you will structure layouts tomorrow.
Flexbox and Grid Layout: How you will structure layouts tomorrow.Flexbox and Grid Layout: How you will structure layouts tomorrow.
Flexbox and Grid Layout: How you will structure layouts tomorrow.
 
Future Layout & Performance
Future Layout & PerformanceFuture Layout & Performance
Future Layout & Performance
 
But what about old browsers?
But what about old browsers?But what about old browsers?
But what about old browsers?
 
CSS Flexbox and Grid Layouts
CSS Flexbox and Grid LayoutsCSS Flexbox and Grid Layouts
CSS Flexbox and Grid Layouts
 
Is Flexbox the Future of Layout?
Is Flexbox the Future of Layout?Is Flexbox the Future of Layout?
Is Flexbox the Future of Layout?
 
MTA css layouts
MTA css layoutsMTA css layouts
MTA css layouts
 
Understanding Flexbox Layout in React Native.pdf
Understanding Flexbox Layout in React Native.pdfUnderstanding Flexbox Layout in React Native.pdf
Understanding Flexbox Layout in React Native.pdf
 
Introduction to flexbox
Introduction  to  flexboxIntroduction  to  flexbox
Introduction to flexbox
 
Flexbox Will Shock You!
Flexbox Will Shock You!Flexbox Will Shock You!
Flexbox Will Shock You!
 
WEBD 162: display property, Float and Clear
WEBD 162: display property, Float and ClearWEBD 162: display property, Float and Clear
WEBD 162: display property, Float and Clear
 
CSS3 Flexbox & Responsive Design
CSS3 Flexbox & Responsive DesignCSS3 Flexbox & Responsive Design
CSS3 Flexbox & Responsive Design
 

Recently uploaded

6 Tips For Restaurant Social Media Marketing.pdf
6 Tips For Restaurant Social Media Marketing.pdf6 Tips For Restaurant Social Media Marketing.pdf
6 Tips For Restaurant Social Media Marketing.pdf
Metric Connect
 
Global Uniform Market Analysis 2024: Market Size & Trends
Global Uniform Market Analysis 2024: Market Size & TrendsGlobal Uniform Market Analysis 2024: Market Size & Trends
Global Uniform Market Analysis 2024: Market Size & Trends
UniformMarket
 
TAM AdEx-Quarterly Report on Television Advertising_2024.pdf
TAM AdEx-Quarterly Report on Television Advertising_2024.pdfTAM AdEx-Quarterly Report on Television Advertising_2024.pdf
TAM AdEx-Quarterly Report on Television Advertising_2024.pdf
Social Samosa
 
Why bridging the gap between PR and SEO is the only way forward for PR Profes...
Why bridging the gap between PR and SEO is the only way forward for PR Profes...Why bridging the gap between PR and SEO is the only way forward for PR Profes...
Why bridging the gap between PR and SEO is the only way forward for PR Profes...
Isa Lavs
 
Social Samosa's #30Under30 Guidebook.pdf
Social Samosa's #30Under30 Guidebook.pdfSocial Samosa's #30Under30 Guidebook.pdf
Social Samosa's #30Under30 Guidebook.pdf
Social Samosa
 
Title: Making Money the Easy Way: A Quick Guide to Generating Income
Title: Making Money the Easy Way: A Quick Guide to Generating IncomeTitle: Making Money the Easy Way: A Quick Guide to Generating Income
Title: Making Money the Easy Way: A Quick Guide to Generating Income
WilliamZinsmeister
 
THE STORY COMMUNICATION Credential 2024.pptx
THE STORY COMMUNICATION Credential 2024.pptxTHE STORY COMMUNICATION Credential 2024.pptx
THE STORY COMMUNICATION Credential 2024.pptx
huyenngo62
 
Bad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBK
Bad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBKBad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBK
Bad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBK
rawlensproductionsco
 
Transforming Digital Marketing with Top AI Tools of 2024.pdf
Transforming Digital Marketing with Top AI Tools of 2024.pdfTransforming Digital Marketing with Top AI Tools of 2024.pdf
Transforming Digital Marketing with Top AI Tools of 2024.pdf
Tirupati Gayaph
 
Advertising and Promotion of whisper by Sakthi Sundar
Advertising and Promotion of whisper by Sakthi SundarAdvertising and Promotion of whisper by Sakthi Sundar
Advertising and Promotion of whisper by Sakthi Sundar
sakthisundar2001
 
The Power of Digital Marketing in the Modern Age.pdf
The Power of Digital Marketing in the Modern Age.pdfThe Power of Digital Marketing in the Modern Age.pdf
The Power of Digital Marketing in the Modern Age.pdf
David Thomson
 
Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...
Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...
Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...
shivangiji206
 
Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...
Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...
Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...
shivangiji206
 
SEO and Google Ads Fundamentals Gokce Yesilbas
SEO and Google Ads Fundamentals Gokce YesilbasSEO and Google Ads Fundamentals Gokce Yesilbas
SEO and Google Ads Fundamentals Gokce Yesilbas
gokceyesilbas
 
2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
 
Onboarding ABM - Insights from Checkpoint & Jfrog
Onboarding ABM - Insights from Checkpoint & JfrogOnboarding ABM - Insights from Checkpoint & Jfrog
Onboarding ABM - Insights from Checkpoint & Jfrog
Avishai Sharon
 
630065615-coca-cola-marketing-ppt (2).pptx
630065615-coca-cola-marketing-ppt (2).pptx630065615-coca-cola-marketing-ppt (2).pptx
630065615-coca-cola-marketing-ppt (2).pptx
ArickStha1
 
Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...
Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...
Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...
rosankumar564363
 
Digital Marketing Company in India - DIGI Brooks
Digital Marketing Company in India -  DIGI BrooksDigital Marketing Company in India -  DIGI Brooks
Digital Marketing Company in India - DIGI Brooks
DIGI Brooks
 
Call Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your Doorstep
Call Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your DoorstepCall Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your Doorstep
Call Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your Doorstep
shivangiji206
 

Recently uploaded (20)

6 Tips For Restaurant Social Media Marketing.pdf
6 Tips For Restaurant Social Media Marketing.pdf6 Tips For Restaurant Social Media Marketing.pdf
6 Tips For Restaurant Social Media Marketing.pdf
 
Global Uniform Market Analysis 2024: Market Size & Trends
Global Uniform Market Analysis 2024: Market Size & TrendsGlobal Uniform Market Analysis 2024: Market Size & Trends
Global Uniform Market Analysis 2024: Market Size & Trends
 
TAM AdEx-Quarterly Report on Television Advertising_2024.pdf
TAM AdEx-Quarterly Report on Television Advertising_2024.pdfTAM AdEx-Quarterly Report on Television Advertising_2024.pdf
TAM AdEx-Quarterly Report on Television Advertising_2024.pdf
 
Why bridging the gap between PR and SEO is the only way forward for PR Profes...
Why bridging the gap between PR and SEO is the only way forward for PR Profes...Why bridging the gap between PR and SEO is the only way forward for PR Profes...
Why bridging the gap between PR and SEO is the only way forward for PR Profes...
 
Social Samosa's #30Under30 Guidebook.pdf
Social Samosa's #30Under30 Guidebook.pdfSocial Samosa's #30Under30 Guidebook.pdf
Social Samosa's #30Under30 Guidebook.pdf
 
Title: Making Money the Easy Way: A Quick Guide to Generating Income
Title: Making Money the Easy Way: A Quick Guide to Generating IncomeTitle: Making Money the Easy Way: A Quick Guide to Generating Income
Title: Making Money the Easy Way: A Quick Guide to Generating Income
 
THE STORY COMMUNICATION Credential 2024.pptx
THE STORY COMMUNICATION Credential 2024.pptxTHE STORY COMMUNICATION Credential 2024.pptx
THE STORY COMMUNICATION Credential 2024.pptx
 
Bad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBK
Bad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBKBad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBK
Bad Bunny Merch.pptxKJDSVKBDSVKBDSVKDDSKDKJDBK
 
Transforming Digital Marketing with Top AI Tools of 2024.pdf
Transforming Digital Marketing with Top AI Tools of 2024.pdfTransforming Digital Marketing with Top AI Tools of 2024.pdf
Transforming Digital Marketing with Top AI Tools of 2024.pdf
 
Advertising and Promotion of whisper by Sakthi Sundar
Advertising and Promotion of whisper by Sakthi SundarAdvertising and Promotion of whisper by Sakthi Sundar
Advertising and Promotion of whisper by Sakthi Sundar
 
The Power of Digital Marketing in the Modern Age.pdf
The Power of Digital Marketing in the Modern Age.pdfThe Power of Digital Marketing in the Modern Age.pdf
The Power of Digital Marketing in the Modern Age.pdf
 
Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...
Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...
Visakhapatnam Call Girls 👉 9352988975 👈 Full Satisfied Service Unlimited Shot...
 
Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...
Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...
Varanasi Call Girls 👉 7014168258 👈 Full Satisfied Service Unlimited Shot All ...
 
SEO and Google Ads Fundamentals Gokce Yesilbas
SEO and Google Ads Fundamentals Gokce YesilbasSEO and Google Ads Fundamentals Gokce Yesilbas
SEO and Google Ads Fundamentals Gokce Yesilbas
 
2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing
 
Onboarding ABM - Insights from Checkpoint & Jfrog
Onboarding ABM - Insights from Checkpoint & JfrogOnboarding ABM - Insights from Checkpoint & Jfrog
Onboarding ABM - Insights from Checkpoint & Jfrog
 
630065615-coca-cola-marketing-ppt (2).pptx
630065615-coca-cola-marketing-ppt (2).pptx630065615-coca-cola-marketing-ppt (2).pptx
630065615-coca-cola-marketing-ppt (2).pptx
 
Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...
Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...
Call Girls in Hyderabad (Telangana) call me [🔝7737669865🔝] Escort In Hyderaba...
 
Digital Marketing Company in India - DIGI Brooks
Digital Marketing Company in India -  DIGI BrooksDigital Marketing Company in India -  DIGI Brooks
Digital Marketing Company in India - DIGI Brooks
 
Call Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your Doorstep
Call Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your DoorstepCall Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your Doorstep
Call Girls Lucknow | 7737669865 | Miss Neha Free Delivery 24x7 at Your Doorstep
 

digital swifton

  • 2. Flexbox basically a layout module of CSS Before the Flexbox Layout module, there were four layout modes: • Table, for two-dimensional table data • Positioned, for explicit position of an element } .. First of all we need a container where all the elements are direct child of the container. Property of Container. • flex-direction • flex-wrap • flex-flow • justify-content • align-items • align-content
  • 3. The flex-direction Property The flex-direction property defines in which direction the container wants to stack the flex items. } .. flex-direction: column - stacks the flex items vertically (from top to bottom). || column-reverse;- value stacks the flex items vertically (but from bottom to top) || row;- value stacks the flex items horizontally (from left to right) row-reverse;- stacks the flex items horizontally (but from right to left)
  • 4. The flex-wrap Property The flex-wrap property specifies whether the flex items should wrap or not. } .. flex-wrap: wrap;- specifies that the flex items will wrap if necessary || nowrap;- specifies that the flex items will not wrap (this is default) || wrap-reverse;- specifies that the flexible items will wrap if necessary, in reverse order. row-reverse;- stacks the flex items horizontally (but from right to left) **The flex-flow property is a shorthand property for setting both the flex-direction and flex-wrap properties. flex-flow: row wrap;
  • 5. The justify-content Property The justify-content property is used to align the flex items: } .. justify-content: center; aligns the flex items at the center of the container || flex-start; aligns the flex items at the beginning of the container (this is default) || flex-end; aligns the flex items at the end of the container. || space-around; displays the flex items with space before, between, and after the lines. || space-between; displays the flex items with space between the lines
  • 6. The align-items Property The align-items property is used to align the flex items. } .. align-items: center; aligns the flex items in the middle of the container || flex-start; aligns the flex items at the top of the container || flex-end; aligns the flex items at the bottom of the container || stretch; stretches the flex items to fill the container (this is default)
  • 7. CSS Flex Items The align-content property is used to align the flex lines. } .. The flex item properties are: • order • flex-grow • flex-shrink • flex-basis • flex • align-self
  • 8. } ... The order Property: The order property specifies the order of the flex items. <div class="flex-container"> <div style="order: 3">1</div> <div style="order: 2">2</div> <div style="order: 4">3</div> <div style="order: 1">4</div> </div> The flex-grow Property: The flex-grow property specifies how much a flex item will grow relative to the rest of the flex items. <div class="flex-container"> <div style="flex-grow: 1">1</div> <div style="flex-grow: 1">2</div> <div style="flex-grow: 8">3</div> </div>
  • 10. What is The Hero Section. As the first thing people see when they visit your website, a hero section is the area that immediately shows up on the screen under your logo and menu. • What you have to offer • Why people should trust you • The benefits of working with you • What action they should take next
  • 11.
  • 13. Rashedul Islam Emon email: emonrasedul@gmail.com Phone: +8801837995395 { } .. ..