JSFiddle - React, Tailwind, and code Playground
by eapo
HTML
<div class="container">
<object id="topo" data="http://www.web-source.net" type="text/html" width="100%" height="100%" style="min-height: 100%;">
<p>This is the fallback code!</p>
</object>
</div>
CSS
.container {
height: 90vh;
background-color: #ccc;
}
object {
border: 1px solid red;
display: block;
height: 80%;
}
object > p {
background-color: #fff;
height: 50%;
padding: 10px;
margin:0;
}