JSFiddle - React, Tailwind, and code Playground

by shapeshifta

HTML

<div class="box_scale">
    <iframe width="1000" height="1000" src="http://snoozee.com"></iframe>
</div>

CSS

.box_scale {
    width:1000px;
    height:1000px;
    transform-origin: left top 0;
    -webkit-transform: scale(0.2);
    /* Saf3.1+, Chrome */
    -moz-transform: scale(0.2);
    /* FF3.5+ */
    -ms-transform: scale(0.2);
    /* IE9 */
    -o-transform: scale(0.2);
    /* Opera 10.5+ */
    transform: scale(0.2);
    filter: progid:DXImageTransform.Microsoft.Matrix(
    /* IE6–IE9 */
    M11=0.9999619230641713, M12=-0.008726535498373935, M21=0.008726535498373935, M22=0.9999619230641713, SizingMethod='auto expand');
    
}