JSFiddle - React, Tailwind, and code Playground
by sg3s
HTML
<div id="myiframe-wrap">
<div id="toolbar"><a href="#">Lorem Ipsum</a></div>
<iframe id="myiframe" src="http://www.gizmodo.com" border="0"></iframe>
</div>
CSS
html, body {
height: 100%;
padding: 0;
}
#myiframe-wrap {
position: absolute;
top: 50px;
right: 10px;
bottom: 10px;
left: 10px;
}
#toolbar {
position: absolute;
height: 30px;
width: 100%;
line-height: 30px;
background: #eee;
top: -40px;
}
#myiframe {
position: absolute;
display: block;
border: 0;
height: 100%;
width: 100%;
}