Tested tool guide
Tested browser tools
Checked August 16, 2026
What Responsive Layout Tester does, with a checked example
This tool renders one HTML document in several panes at once, each pinned to a different viewport width and wrapped in a device frame, so a phone, tablet, and desktop layout sit side by side without you resizing anything. Because each pane is a real viewport, media queries are evaluated per pane, and the same stylesheet produces a different layout in each frame. The usual surprise is the frames: the device chrome is illustration, and only the inner width drives the layout, so a breakpoint that falls between the pane widths appears in no pane at all.
Worked example
A concrete input and expected output from the current implementation.
Input
<style>
.box { background: #FF9500; }
@media (min-width: 600px) { .box { background: #007AFF; } }
@media (min-width: 1000px) { .box { background: #30D158; } }
</style>
<div class="box" style="width:100%;height:120px">box</div> ->
Expected output
The box renders orange in every pane narrower than 600px, blue in panes from 600px to 999px, and green in panes 1000px and wider. The color flips appear exactly at the two breakpoints, so the row of panes reads as a map of where each query boundary falls.
min-width media queries match once the viewport reaches the stated width, and at equal specificity the last matching rule wins, so the blue rule owns 600-999px and the green rule takes over at 1000px. The per-pane colors follow directly from how the queries are defined.