Skip to content

Instantly share code, notes, and snippets.

@rictorres
Created August 30, 2012 01:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rictorres/3521351 to your computer and use it in GitHub Desktop.
Save rictorres/3521351 to your computer and use it in GitHub Desktop.
Responsive Design Testing
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Responsive Design Testing</title>
<style>
body { margin: 20px; font-family: sans-serif; overflow-x: scroll; }
.wrapper { width: 6000px; }
.frame { float: left; }
h2 { margin: 0 0 5px 0; }
iframe { margin: 0 20px 20px 0; border: 1px solid #666; }
</style>
</head>
<body>
<div class="wrapper">
<div class="frame">
<h2>320 &times; 480 <small>(mobile)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="335" height="480"></iframe> <! 320 + 15px (scrollbars on Chrome) -->
</div>
<div class="frame">
<h2>480 &times; 640 <small>(small tablet)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="480" height="640"></iframe>
</div>
<div class="frame">
<h2>650 &times; 920 <small>(medium tablet)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="665" height="920"></iframe> <! 650 + 15px (scrollbars on Chrome) -->
</div>
<div class="frame">
<h2>768 &times; 1024 <small>(tablet - portrait)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="768" height="1024"></iframe>
</div>
<div class="frame">
<h2>980 &times; 1024 <small>(tablet - portrait)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="995" height="1024"></iframe> <! 980 + 15px (scrollbars on Chrome) -->
</div>
<div class="frame">
<h2>1024 &times; 768 <small>(tablet - landscape)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="1024" height="768"></iframe>
</div>
<div class="frame">
<h2>1200 &times; 800 <small>(desktop)</small></h2>
<iframe src="./" sandbox="allow-same-origin allow-forms allow-scripts" seamless width="1200" height="800"></iframe>
</div>
</div>
</body>
</html>
@rictorres
Copy link
Author

you can define the frame sizes based on your media queries breakpoints (mine is 320, 650 and 980px)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment