JSFiddle - React, Tailwind, and code Playground
by Mehmet Yener
HTML
<iframe id="jsfiddle" src="http://jsfiddle.net/"></iframe>
CSS
#terminal
{
width:100%;
height:200px;
background-color:#000;
color:rgb(24, 214, 24);
font-size:15px;
padding:10px 10px 0 10px;
cursor: help;
font-family: cursor, courier;
}
JavaScript
$( document ).ready(function(){
var height = $( window ).height();
var width = $( window ).width();
$('#jsfiddle').css('height',height);
$('#jsfiddle').css('width',width);
});