Upgrade to Pro — share decks privately, control downloads, hide ads and more …

La technique des Fab Four

La technique des Fab Four

Intégrer des e-mails responsive, c'est difficile. Et ça impose de travailler avec un support de CSS minimal, souvent sans media queries. Voici la présentation d'une technique un peu tordue permettant d'optimiser du contenu sur mobile, sans media queries. Et un premier pas vers des Element Queries…

HTeuMeuLeu

June 09, 2017
Tweet

More Decks by HTeuMeuLeu

Other Decks in Technology

Transcript

  1. Il y a deux choses compliquées en informatique : l'invalidation

    d'un cache et nommer les choses. “ — Phil Karlton ”
  2. Il y a trois choses compliquées en informatique : l'invalidation

    d'un cache et nommer les choses et faire des e-mails responsive. “ ”
  3. Apple Mail Gmail Outlook Yahoo! Orange Android Support de @media

    sur mobile en 2016 iOS Android Webmail mobile iOS Android Outlook.com Android 4 iOS 9 iOS 8 iOS 7 Webmail mobile iOS Android Office 365 Android 5+ ✔ ✔ ✔ ✔
  4. .hero { background: radial-gradient( circle at 30% 107%, #fdf497 0%,

    #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90% ); }
  5. font-size: calc( 12px + (24 - 12) * ( (100vw

    - 400px) / ( 800 - 400) ));
  6. La technique 
 des Fab Four Illustrations by Elias Stein

    : https://dribbble.com/shots/2012203-Paul-George
  7. Il y a trois choses compliquées en informatique : l'invalidation

    d'un cache et nommer les choses et faire des e-mails responsive. “ ”
  8. max-­‐width:100%;   min-­‐width:25%;   width:calc((480px  -­‐  100%)  *  480); En

    dessous du point de rupture Au dessus du point de rupture Le point de rupture
  9. max-­‐width:   min-­‐width:   width: avec un parent à 500px

    500px 125px -­‐9600px avec un parent à 500px
  10. max-­‐width:100%;   min-­‐width:25%;   width:-­‐webkit-­‐calc(480px  *  480  -­‐  100%  *

     480);   width:calc(480px  *  480  -­‐  100%  *  480); display:inline-­‐block;   min-­‐width:120px;   width:25%;
  11. max-­‐width:100%;   min-­‐width:calc(25%);   width:-­‐webkit-­‐calc(480px  *  480  -­‐  100%  *

     480);   width:calc(480px  *  480  -­‐  100%  *  480); display:inline-­‐block;   min-­‐width:120px;   width:25%;
  12. max-­‐width:100%;   min-­‐width:-­‐webkit-­‐calc(25%);   min-­‐width:calc(25%);   width:-­‐webkit-­‐calc(480px  *  480  -­‐

     100%  *  480);   width:calc(480px  *  480  -­‐  100%  *  480); display:inline-­‐block;   min-­‐width:120px;   width:25%;
  13. <div  style="display:inline-­‐block;     min-­‐width:120px;   width:25%;   max-­‐width:100%;  

      min-­‐width:-­‐webkit-­‐calc(25%);     min-­‐width:calc(25%);     width:-­‐webkit-­‐calc(480px  *  480  -­‐  100%  *  480);   width:calc(480px  *  480  -­‐  100%  *  480);">     …   </div>
  14. <div  style="display:inline-­‐block;     min-­‐width:120px;   width:25%;   max-­‐width:100%;  

      min-­‐width:-­‐webkit-­‐calc(25%);     min-­‐width:calc(25%);     width:-­‐webkit-­‐calc(230400px  -­‐  48000%);   width:calc(230400px  -­‐  48000%);">     …   </div>