JSFiddle - React, Tailwind, and code Playground

HTML

<div class="header_bar">
  <div class="tab_active"   onclick="location.href='...'">Tab1</div>
  <div class="tab_inactive" onclick="location.href='...'">Tab2</div>
  <div class="tab_inactive" onclick="location.href='...'">Tab3</div>
</div>

<div class="iframe_container">
    <iframe id="main_iframe" class="main_iframe" frameborder="0" src="http://en.wikipedia.org/wiki/Special:Random">
  </iframe>
</div>

CSS

html { height:100% }
body { height:100%; width:100%; margin:0; display:table;}
.header_bar {display:table-row; }
.iframe_container {height:100%; display:table-cell; }
iframe { height:100%; width:100%; display:block; }