JSFiddle - React, Tailwind, and code Playground

by blasteralfred

HTML

<div id="wrapper">
    <div id="one">bgfgf</div>
    <div id="two">
        <iframe width="100%" height="100%" src="abc.html"></iframe>
    </div>
  </div>
</div>

CSS

#wrapper {height:350px; width:300px; border:3px solid gray; display:block;}
#one {height:100px; background-color:red;display: block;}
#two {background-color:blue;display: block; height:250px}
iframe {width:100%; height:100%; background:white;-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;
}