Tested tool guide
Tested browser tools
Checked August 16, 2026
What Responsive Preview Tool does, with a checked example
This tool renders the same page in three real iframes at iPhone, iPad, and desktop viewport sizes, arranged side by side so you can judge a layout at three widths at once. Paste self-contained HTML into the field to preview your own markup, or enter a URL to load a live page into all three panes. The surprise most people hit first: popular sites often come back as blank panes because they forbid being embedded in a frame - the page is fine in a normal tab, but the target site's security headers refuse the iframe.
Worked example
A concrete input and expected output from the current implementation.
Input
<!DOCTYPE html>
<html>
<head>
<style>
body { font-family: sans-serif; padding: 16px; }
@media (max-width: 600px) { body { background: #fff3cd; } }
</style>
</head>
<body>
<h1>Sale ends Friday</h1>
<p>Free delivery on orders over $50, while stock lasts.</p>
</body>
</html> ->
Expected output
Three panes side by side, labeled iPhone, iPad, and desktop, each showing the heading and the paragraph. The iPhone pane has a pale yellow background; the iPad and desktop panes keep the default background. The paragraph reflows into a narrower column in the phone pane.
The style rule fires only below 600px. The phone viewport measures well under 600px, while the iPad and desktop viewports measure well above it, so the background change appears in exactly one pane - a live demonstration that each pane evaluates media queries against its own width.