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

Pulling Your Website Up By Your Twitter Bootstraps

Pulling Your Website Up By Your Twitter Bootstraps

Introduction to Bootstrap 3

Kyle Mitofsky

June 20, 2014
Tweet

More Decks by Kyle Mitofsky

Other Decks in Programming

Transcript

  1. About You You’re having a really good time?  Who

    this Talk is geared towards:  People not yet using Bootstrap  Who Bootstrap is geared towards:  Teams without a dedicated designer  Sites that are not doing anything on the front end
  2. Responsive Design Tautologically: Responds to Environment  Get information about

    environment through Media Queries <style> /* Extra small devices (phones, less than 768px) */ /* No media query since this is the default in Bootstrap */ /* Small devices */ @media (min-width: 768px) { /*...*/ } /* Medium devices */ @media (min-width: 992px) { /*...*/ } /* Large devices */ @media (min-width: 1200px) { /*...*/ } </style> http://getbootstrap.com/css/#grid-media-queries
  3. Mobile First The Ted Williams of Responsive Design Patterns 

    Historically - slapping on a couple of media queries and disabling features Graceful Degradation Progressive Enhancement ✓