Breakpoints

From DiviFree
Revision as of 20:16, 24 February 2023 by Loribel (talk | contribs)

BreakPoints Divi

3 Divi Breakpoints :

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


Breakpoints CSS

  /*** Responsive Styles Large Desktop And Above ***/
  @media all and (min-width: 1405px) {
    ...
  }
  /*** Responsive Styles Standard Desktop Only ***/
  @media all and (min-width: 1100px) and (max-width: 1405px) {
    ...
  }
  /*** Responsive Styles Tablet And Below ***/
  @media all and (max-width: 980px) {
    ...
  }
  /*** Responsive Styles Tablet Only ***/
  @media all and (min-width: 768px) and (max-width: 980px) {
    ...
  }
  /*** Responsive Styles Smartphone Only ***/
  @media all and (max-width: 767px) {
    ...
  }
  /*** Responsive Styles Smartphone Portrait ***/
  @media all and (max-width: 479px) {
    ...
  }

BreakPoints Devices

  • iPad : 1180 x 820
  • Pad mini : 1024 x 768
  • iPhone XR : 414 x 896
  • iPhone SE : 375 x 667
  • iPhone 12 : Pro 390x844
  • Surface : 912 x 1368
  • Surface Duo : 540 x 720
  • Classique : 1024
  • Classique : 1280