Skip to content

Instantly share code, notes, and snippets.

@TrevorJTClarke
Created August 18, 2015 17:47
Show Gist options
  • Save TrevorJTClarke/91e721479f6987ecd51b to your computer and use it in GitHub Desktop.
Save TrevorJTClarke/91e721479f6987ecd51b to your computer and use it in GitHub Desktop.
Common Desktop and Tablet Browser Sizes and Properties
var commonBrowserViewports = [
{ name: 'Desktop - Extra Large', width: 2880, height: 1800, ratio: 2 },
{ name: 'Desktop - Large', width: 1920, height: 1080, ratio: 1 },
{ name: 'Desktop', width: 1440, height: 900, ratio: 1 },
{ name: 'Desktop', width: 1366, height: 768, ratio: 1 },
{ name: 'Desktop', width: 1280, height: 800, ratio: 1 },
{ name: 'Tablet - Portrait', width: 768, height: 1024, ratio: 1 },
{ name: 'Tablet - Landscape', width: 1024, height: 768, ratio: 1 }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment