JSFiddle - React, Tailwind, and code Playground
by willemvb
HTML
<div class="container small">
<iframe src="//doc.jsfiddle.net"></iframe>
</div>
<div class="container small">
<table cellspacing="0" cellpadding="0">
<tr><td>
<iframe src="//doc.jsfiddle.net"></iframe>
</td>
<td>
<iframe src="//doc.jsfiddle.net"></iframe>
</td></tr>
</table>
</div>
<div class="container">
<iframe src="//doc.jsfiddle.net"></iframe>
</div>
<div class="container">
<table cellspacing="10" cellpadding="0">
<tr><td>
<iframe src="//doc.jsfiddle.net"></iframe>
</td></tr>
</table>
</div>
CSS
.container
{
position: relative;
margin: 10px;
border: 1px solid #999;
padding: 10px;
background-color: #ddd;
height: 180px;
}
.container.small { height: 60px; }
iframe
{
width: 100%;
height: 100%;
margin: 0;
border: 0 none;
outline: 0 none;
padding: 0;
position: absolute;
top:0;
left:0;
}
table
{
width: 100%;
height: 100%;
position: relative;
}
table td
{
height: 100%;
position: relative;
box-sizing: border-box;
}
.wrapper{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}