Breakpoints: Difference between revisions

From DiviFree
No edit summary
mNo edit summary
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''''Voir [[DF-CSS]]'''''
==BreakPoints Divi==
==BreakPoints Divi==


Line 7: Line 9:
# Mobile <= 767px
# Mobile <= 767px


===Breakpoints CSS===
==BreakPoints DiviFree==
=== SM / MD / LG / XL / XXL===
* Breakpoints de Divi ( 576 - 980 )
* Divi : Responsive Design - Design version Desktop en premier
* DiviFree : Mobile First
 
BreakPoints de Divi :
* Desktop : par défault - Équivalent à lg et supérieur
* Tablette : < 980px - Équivalent sm + md + xs (default)
* Mobile : < 576px - Équivalent à xs (default)
 
BreakPoints (DiviFree) :
* xs : < 576px (X Small) - Téléphone vertical - Default
* sm : >= 576px (Small) - Téléphone
* md : >= 767px (Medium) - Tablette verticale - Téléphone horizontal
* lg : >= 981 (Large) - Tablette et Desktop / Petits écrans
* xl : >= 1280px (X Large) - Desktop / Écran moyen
* xxl : >= 1536px (XX Large) - Desktop / Écran large
 
Containers
* lg : max-width: 1280px
* xl : max-width: 1500px
 
===CSS Media Query (Mobile First)===
<pre>
<pre>
  /*** Responsive Styles Large Desktop And Above ***/
// X-Small devices (portrait phones, less than 576px)
  @media all and (min-width: 1405px) {
// No media query for 'xs' since this is the default
    ...
 
  }
// SM - Small devices (landscape phones, 576px and up)
  /*** Responsive Styles Standard Desktop Only ***/
@media (min-width: 576px) { ... }
  @media all and (min-width: 1100px) and (max-width: 1405px) {
 
    ...
// MD - Medium devices (tablets, 768px and up)
  }
@media (min-width: 768px) { ... }
  /*** Responsive Styles Tablet And Below ***/
 
  @media all and (max-width: 980px) {
// LG Large devices (desktops, 981px and up)
    ...
@media (min-width: 981px) { ... }
  }
 
  /*** Responsive Styles Tablet Only ***/
// XL - X-Large devices (large desktops, 1280px and up)
  @media all and (min-width: 768px) and (max-width: 980px) {
@media (min-width: 1280px) { ... }
    ...
 
  }
// XXL - XX-Large devices (larger desktops, 1538px and up)
  /*** Responsive Styles Smartphone Only ***/
@media (min-width: 1538px) { ... }
  @media all and (max-width: 767px) {
    ...
  }
  /*** Responsive Styles Smartphone Portrait ***/
  @media all and (max-width: 479px) {
    ...
  }
</pre>
</pre>


==BreakPoints DiviFree==
===CSS Media Query (Divi) ===
Utilisation des breakpoints de divi ( 576 / 980 )
<pre>
Responsive Design - Design version Desktop en premier
/*** DT DEFAULT ***/
* xs < 576px (x Small) - Téléphone vertical
@media all and (min-width: 981px) { ... }
* sm (Divi): 576px - 767px (Small) - Téléphone
 
* md (Divi): 767px - 980px (Medium) - Tablette verticale - Téléphone horizontal
/*** Tablets ***/
* default (Divi): > 980px  (Large) - Desktop
@media all and (max-width: 980px) { ... }
** lg : 980px - 1100px (Large) - Desktop L
 
** xl : 1100px - 1405px (X-Large) - Desktop XL
/*** Smartphone Only ***/
** xxl : ≥ 1405px (XX-Large) - Desktop XXL
@media all and (max-width: 767px) { ... }
</pre>


==BreakPoints Bootstrap==
==BreakPoints Bootstrap==
Line 55: Line 74:
* xl : ≥1200px
* xl : ≥1200px
* xxl : ≥1400px
* xxl : ≥1400px
===Media Query Bootstrap 5.0===
<pre>
// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }
</pre>


==BreakPoints Tailwind==
==BreakPoints Tailwind==
Line 68: Line 108:
Stats: https://gs.statcounter.com/screen-resolution-stats
Stats: https://gs.statcounter.com/screen-resolution-stats


Viewport Desktop (Stats 2022)
===Viewport Desktop (Stats 2022)===
* 1920 x 1080 (24%) : Écrans d'ordinateur de grande taille.
* 1920 x 1080 (24%) : Écrans d'ordinateur de grande taille.
* 1366 x 768 (16%) : Écrans d'ordinateur de taille moyenne.
* 1366 x 768 (16%) : Écrans d'ordinateur de taille moyenne.
Line 76: Line 116:
* 1600 x 900 (3%)
* 1600 x 900 (3%)


Viewport Tablettes (stats 2022) :
===Viewport Tablettes (stats 2022)===
* 768 x 1024 (29%)  
* 768 x 1024 (29%)  
* 810 x 1080 (8%)
* 810 x 1080 (8%)
Line 84: Line 124:
* 820 x 1180 (3%)
* 820 x 1180 (3%)


Viewport Mobile (stats 2022) :
===Viewport Mobile (stats 2022)===
* 360 x 800 (11%)
* 360 x 800 (11%)
* 390 x 844 (7%
* 390 x 844 (7%
Line 91: Line 131:
* 393 x 873 (5%)
* 393 x 873 (5%)


Exemple de devices
===Viewport Devices===
* iPad Pro : 1024 x 1366
* iPad Pro : 1024 x 1366
* Pad mini : 768 x 1024
* Pad mini : 768 x 1024

Latest revision as of 16:28, 27 February 2023

Voir DF-CSS

BreakPoints Divi

Divi Breakpoints (3 modes) :

Responsive Design - Design version Desktop en premier

  1. Desktop >= 981px
  2. Tablet 980px - 768px
  3. Mobile <= 767px

BreakPoints DiviFree

SM / MD / LG / XL / XXL

  • Breakpoints de Divi ( 576 - 980 )
  • Divi : Responsive Design - Design version Desktop en premier
  • DiviFree : Mobile First

BreakPoints de Divi :

  • Desktop : par défault - Équivalent à lg et supérieur
  • Tablette : < 980px - Équivalent sm + md + xs (default)
  • Mobile : < 576px - Équivalent à xs (default)

BreakPoints (DiviFree) :

  • xs : < 576px (X Small) - Téléphone vertical - Default
  • sm : >= 576px (Small) - Téléphone
  • md : >= 767px (Medium) - Tablette verticale - Téléphone horizontal
  • lg : >= 981 (Large) - Tablette et Desktop / Petits écrans
  • xl : >= 1280px (X Large) - Desktop / Écran moyen
  • xxl : >= 1536px (XX Large) - Desktop / Écran large

Containers

  • lg : max-width: 1280px
  • xl : max-width: 1500px

CSS Media Query (Mobile First)

// X-Small devices (portrait phones, less than 576px)
// No media query for 'xs' since this is the default

// SM - Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// MD - Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// LG Large devices (desktops, 981px and up)
@media (min-width: 981px) { ... }

// XL - X-Large devices (large desktops, 1280px and up)
@media (min-width: 1280px) { ... }

// XXL - XX-Large devices (larger desktops, 1538px and up)
@media (min-width: 1538px) { ... }

CSS Media Query (Divi)

/*** DT DEFAULT ***/
@media all and (min-width: 981px) { ... }

/*** Tablets ***/
@media all and (max-width: 980px) { ... }

/*** Smartphone Only ***/
@media all and (max-width: 767px) { ... }

BreakPoints Bootstrap

Mobile first

C'est le style mobile qui a priorité

  • xs : Extra Small <576px
  • sm : Small ≥576px
  • md : Medium ≥768px
  • lg : Large ≥992px
  • xl : ≥1200px
  • xxl : ≥1400px

Media Query Bootstrap 5.0

// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }

BreakPoints Tailwind

Mobile first

https://tailwindcss.com/docs/container

  • sm (640px) max-width: 640px;
  • md (768px) max-width: 768px;
  • lg (1024px) max-width: 1024px;
  • xl (1280px) max-width: 1280px;
  • 2xl (1536px) max-width: 1536px;

BreakPoints Devices

Stats: https://gs.statcounter.com/screen-resolution-stats

Viewport Desktop (Stats 2022)

  • 1920 x 1080 (24%) : Écrans d'ordinateur de grande taille.
  • 1366 x 768 (16%) : Écrans d'ordinateur de taille moyenne.
  • 1536 x 864 (11%) : Écrans d'ordinateur de taille moyenne.
  • 1280 x 720 (6%): Ordinateurs portable s de petite taille et les écrans d'ordinateur de taille moyenne.
  • 1440 x 900 (6%)
  • 1600 x 900 (3%)

Viewport Tablettes (stats 2022)

  • 768 x 1024 (29%)
  • 810 x 1080 (8%)
  • 1280 x 800 (7%)
  • 800 x 1280 (6%)
  • 601 x 962 (5%)
  • 820 x 1180 (3%)

Viewport Mobile (stats 2022)

  • 360 x 800 (11%)
  • 390 x 844 (7%
  • 414 x 896 (6%)
  • 412 x 915 (6%)
  • 393 x 873 (5%)

Viewport Devices

  • iPad Pro : 1024 x 1366
  • Pad mini : 768 x 1024
  • iPhone XR : 414 x 896
  • iPhone SE : 375 x 667
  • Surface : 912 x 1368
  • Surface Duo : 540 x 720