SlideShare ist ein Scribd-Unternehmen logo
1 von 56
Downloaden Sie, um offline zu lesen
CSS3 Flexbox &
Responsive Design
Responsive Web design Conference
Tehran, December 5, 2013

Arash Milani | arashmilani.com | ‫آرش میالنی‬
‫مسالٍ دیزیىٍ آیتمَایی کٍ باید در مزکش قزار گیزود‬
‫مسالٍ دیزیىٍ آیتمَایی کٍ باید در مزکش قزار گیزود‬
‫مسالٍ َمیشگی مىً راَبزی يبسایت‬
‫یکی اس آیتمَای مىً حذف میشًد.‬
‫ياقعا سال، سال 3102 َست؟!‬
‫ وحًٌی چیدمان یا‬Flexbox
‫ جدید در‬Layout Module
.‫ َست‬CSS3
Flexbox ‫وحًٌ ایجاد‬
.flex-container

.flex-container {
display: flex;
}
Flexbox ‫اجشای‬
.flex-container

flex item

.flex-container {
display: flex;
}
‫‪Flex Line‬‬

‫بٍ صًرت پیشفزض ایه خط در امتداد ‪ writing mode‬است‬
Direction ‫ با تغییز‬Flex Line ‫تغییز جُت‬
.flex-container

.flex-container {
display: flex;
direction: rtl;
}
‫محًر اصلی‬
Main Axis

Main Axis

Main Start

Main End
‫محًر عمًد‬
Cross Axis

Cross Start

Cross Axis

Cross End
Flex Container Properties
Flex Container Properties

flex-direction

.flex-container

A

B

C

.flex-container {
flex-direction: row;
}
Flex Container Properties

flex-direction

.flex-container

C

B

A

.flex-container {
flex-direction: row-reverse;
}
Flex Container Properties

flex-direction
A
B
C

.flex-container {
flex-direction: column;
}
Flex Container Properties

flex-direction
C
B
A

.flex-container {
flex-direction: column-reverse;
}
Flex Container Properties

justify-content
.flex-container

A

B

C

.flex-container {
justify-content: flex-start;
}
Flex Container Properties

justify-content
.flex-container

A

B

C

.flex-container {
justify-content: flex-end;
}
Flex Container Properties

justify-content
.flex-container

A

B

C

.flex-container {
justify-content: flex-center;
}
Flex Container Properties

justify-content
.flex-container

A

B

C

.flex-container {
justify-content: space-between;
}
Flex Container Properties

justify-content
.flex-container

A

B

C

.flex-container {
justify-content: space-around;
}
Flex Container Properties

align-items

.flex-container

A

B

C

.flex-container {
align-items: flex-start;
}
Flex Container Properties

align-items

.flex-container

A

B

C

.flex-container {
align-items: flex-end;
}
Flex Container Properties

align-items

.flex-container

A

B

C

.flex-container {
align-items: center;
}
Flex Container Properties

align-items

.flex-container

A

B

C

.flex-container {
align-items: stretch;
}
Flex Container Properties

align-items

.flex-container

Base

line some
text here

C

.flex-container {
align-items: baseline;
}
Flex Container Properties

flex-wrap

.flex-container

A

B

C

D

.flex-container {
flex-wrap: no-wrap;
}

E
Flex Container Properties

flex-wrap

1

A

2

D

B

C

E

.flex-container {
flex-wrap: wrap;
}
Flex Container Properties

flex-wrap

2

D

1

A

E
B

C

.flex-container {
flex-wrap: wrap-reverse;
}
Flex Container Properties

align-content
Flex Items Properties
Flex Items Properties

Main Size & Cross Size

Cross Size
Main Size
Flex Items Properties

order

.flex-container

C

A

B

.flex-container div:last-child {
order: -1;
}
Flex Items Properties

margin

.flex-container

A

B

C

.flex-container div:first-child {
margin-right: auto;
}
Flex Items Properties

align-self

.flex-container

A

B

C

.flex-container div:first-child {
align-self: flex-end;
}
Flex Items Properties

flex

.flex-container div {
flex: [grow] [shrink] [basis];
flex:
1
1
0;
}
Flex Items Properties

flex

A

A

B

C

B

C

.flex-container div {
flex: 1 1 50px;
}
Flex Items Properties

flex

A

A

B

C

B

C

.flex-container div:last-child {
flex: 2;
}
Flex Items Properties

flex

A

A

B

C

B

C

.flex-container div {
flex: 0 1 50px;
}
Flex Items Properties

flex

A

B

C

A B C

.flex-container div {
flex: 1 1 50px;
}
Flex Items Properties

flex

A

B

C

A

B

C

.flex-container div {
flex: 1 0 50px;
}
Flexbox in Action
‫مسالٍ دیزیىٍ آیتمَایی کٍ باید در مزکش قزار گیزود‬

.flex-container {
display: flex;
align-items: center;
justify-content: center;
}
‫مسالٍ َمیشگی مىً راَبزی يبسایت‬
‫مسالٍ َمیشگی مىً راَبزی يبسایت‬

.flex-container {
display: flex;
justify-content: space-between
}
Responsive Menu

@media all and (max-width: 500px) {
.flex-container {
flex-direction: column;
}
}
Input Add-ons
Input Add-ons
<div class=“inputAddOn">
<input class=“inputAddOn-field“>
<button class=“inputAddOn-item”>...</button>
</div>

.inputAddOn {
display: flex;
}

.inputAddOn-field {
flex: 1;
}
3 Column Layout
Mobile First
.wrapper {
display: flex;
flex-flow: row wrap;
}

.header, .main, .nav, .aside, .footer {
flex: 1 100%;
}
Mobile First
Larger Screens
@media all and (min-width: 800px) {
.aside { flex: 1 auto; }
.main { flex: 2 0px; }
}
Larger Screens
CSS3 Flexbox & Responsive Design

Weitere ähnliche Inhalte

Andere mochten auch

Grafico diario del dax perfomance index para el 13 03-2012
Grafico diario del dax perfomance index para el 13 03-2012Grafico diario del dax perfomance index para el 13 03-2012
Grafico diario del dax perfomance index para el 13 03-2012Experiencia Trading
 
Totem Sustainability Pitch Deck
Totem Sustainability Pitch DeckTotem Sustainability Pitch Deck
Totem Sustainability Pitch DeckIan Dodd
 
Social Media Strategies for FACC
Social Media Strategies for FACCSocial Media Strategies for FACC
Social Media Strategies for FACCMichael Procopio
 
Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...
Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...
Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...WebVisions
 
Daily Snapshot - 31st January 2017
Daily Snapshot - 31st January 2017Daily Snapshot - 31st January 2017
Daily Snapshot - 31st January 2017Tracxn
 
Investment analysis of startups
Investment analysis of startups Investment analysis of startups
Investment analysis of startups Anton Fedorov
 
The lego story in comic book form
The lego story in comic book formThe lego story in comic book form
The lego story in comic book formDavid Robertson
 
Basilica+. DE SAN FRANCISCO DE ASIS-ITALIA
Basilica+. DE SAN FRANCISCO DE ASIS-ITALIABasilica+. DE SAN FRANCISCO DE ASIS-ITALIA
Basilica+. DE SAN FRANCISCO DE ASIS-ITALIAJosé Gracia Cervera
 
Five Steps for Working Smarter
Five Steps for Working SmarterFive Steps for Working Smarter
Five Steps for Working SmarterAdam Sicinski
 
How to deal with confrontational students
How to deal with confrontational studentsHow to deal with confrontational students
How to deal with confrontational studentskaiperm17
 
Words That Inspire Me
Words That Inspire MeWords That Inspire Me
Words That Inspire MeOH TEIK BIN
 
Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...
Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...
Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...MIM. Ministero dell'Istruzione e del Merito
 
Nuevas tecnologías de información en computo
Nuevas  tecnologías  de información  en computoNuevas  tecnologías  de información  en computo
Nuevas tecnologías de información en computoMaria Alejandra
 
Технология раскрашивания
Технология раскрашиванияТехнология раскрашивания
Технология раскрашиванияkulibin
 
Rifle scopes
Rifle scopesRifle scopes
Rifle scopespau0006
 

Andere mochten auch (19)

Grafico diario del dax perfomance index para el 13 03-2012
Grafico diario del dax perfomance index para el 13 03-2012Grafico diario del dax perfomance index para el 13 03-2012
Grafico diario del dax perfomance index para el 13 03-2012
 
Totem Sustainability Pitch Deck
Totem Sustainability Pitch DeckTotem Sustainability Pitch Deck
Totem Sustainability Pitch Deck
 
Triptico evento a
Triptico evento aTriptico evento a
Triptico evento a
 
Experiencias de ensamblado de un computador
Experiencias de ensamblado de un computadorExperiencias de ensamblado de un computador
Experiencias de ensamblado de un computador
 
Social Media Strategies for FACC
Social Media Strategies for FACCSocial Media Strategies for FACC
Social Media Strategies for FACC
 
Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...
Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...
Geke van Dijk, "Tugboats and Tankers: Contributing to Longterm Organizational...
 
Daily Snapshot - 31st January 2017
Daily Snapshot - 31st January 2017Daily Snapshot - 31st January 2017
Daily Snapshot - 31st January 2017
 
Investment analysis of startups
Investment analysis of startups Investment analysis of startups
Investment analysis of startups
 
The lego story in comic book form
The lego story in comic book formThe lego story in comic book form
The lego story in comic book form
 
Basilica+. DE SAN FRANCISCO DE ASIS-ITALIA
Basilica+. DE SAN FRANCISCO DE ASIS-ITALIABasilica+. DE SAN FRANCISCO DE ASIS-ITALIA
Basilica+. DE SAN FRANCISCO DE ASIS-ITALIA
 
Five Steps for Working Smarter
Five Steps for Working SmarterFive Steps for Working Smarter
Five Steps for Working Smarter
 
How to deal with confrontational students
How to deal with confrontational studentsHow to deal with confrontational students
How to deal with confrontational students
 
Words That Inspire Me
Words That Inspire MeWords That Inspire Me
Words That Inspire Me
 
Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...
Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...
Formazione terziaria non universitaria in Italia – Ministero dell’Istruzione,...
 
Nuevas tecnologías de información en computo
Nuevas  tecnologías  de información  en computoNuevas  tecnologías  de información  en computo
Nuevas tecnologías de información en computo
 
Pando Ventures Presse Kit
Pando Ventures Presse KitPando Ventures Presse Kit
Pando Ventures Presse Kit
 
Технология раскрашивания
Технология раскрашиванияТехнология раскрашивания
Технология раскрашивания
 
Rifle scopes
Rifle scopesRifle scopes
Rifle scopes
 
Guia de estudio fe y obras del 4 6
Guia de estudio fe y obras del 4 6Guia de estudio fe y obras del 4 6
Guia de estudio fe y obras del 4 6
 

Ähnlich wie CSS3 Flexbox & Responsive Design

Flexbox Will Shock You!
Flexbox Will Shock You!Flexbox Will Shock You!
Flexbox Will Shock You!Scott Vandehey
 
Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Zoe Gillenwater
 
CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)Woodridge Software
 
Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)
Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)
Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)Stephen Hay
 
Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Zoe Gillenwater
 
#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]Dalibor Gogic
 
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
 
The New CSS Layout - dotCSS
The New CSS Layout - dotCSSThe New CSS Layout - dotCSS
The New CSS Layout - dotCSSRachel Andrew
 
Putting Flexbox into Practice
Putting Flexbox into PracticePutting Flexbox into Practice
Putting Flexbox into PracticeZoe Gillenwater
 
Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)Zoe Gillenwater
 
3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & itemsIn a Rocket
 
But what about old browsers?
But what about old browsers?But what about old browsers?
But what about old browsers?Rachel Andrew
 
CSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS LayoutCSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS LayoutRachel Andrew
 
Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)Zoe Gillenwater
 

Ähnlich wie CSS3 Flexbox & Responsive Design (20)

flexbox report
flexbox reportflexbox report
flexbox report
 
Flexbox Will Shock You!
Flexbox Will Shock You!Flexbox Will Shock You!
Flexbox Will Shock You!
 
A complete guide to flexbox
A complete guide to flexboxA complete guide to flexbox
A complete guide to flexbox
 
Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)
 
Flex Web Development.pdf
Flex Web Development.pdfFlex Web Development.pdf
Flex Web Development.pdf
 
CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)CSS Flexbox (flexible box layout)
CSS Flexbox (flexible box layout)
 
Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)
Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)
Flexbox: One Giant Leap for Web Layout (GenerateConf 2013)
 
Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)
 
Layout with flexbox
Layout with flexboxLayout with flexbox
Layout with flexbox
 
#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]#4 HTML & CSS [know-how]
#4 HTML & CSS [know-how]
 
Is Flexbox the Future of Layout?
Is Flexbox the Future of Layout?Is Flexbox the Future of Layout?
Is Flexbox the Future of Layout?
 
The New CSS Layout - dotCSS
The New CSS Layout - dotCSSThe New CSS Layout - dotCSS
The New CSS Layout - dotCSS
 
Putting Flexbox into Practice
Putting Flexbox into PracticePutting Flexbox into Practice
Putting Flexbox into Practice
 
CSS Grid vs. Flexbox
CSS Grid vs. FlexboxCSS Grid vs. Flexbox
CSS Grid vs. Flexbox
 
Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)
 
3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items3- Learn Flexbox & CSS Grid / Container & items
3- Learn Flexbox & CSS Grid / Container & items
 
But what about old browsers?
But what about old browsers?But what about old browsers?
But what about old browsers?
 
World of Flexbox
World of Flexbox World of Flexbox
World of Flexbox
 
CSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS LayoutCSS Conf Budapest - New CSS Layout
CSS Conf Budapest - New CSS Layout
 
Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)
 

Kürzlich hochgeladen

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 

Kürzlich hochgeladen (20)

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 

CSS3 Flexbox & Responsive Design