put_ontop_of_iframe

by bsorrentino

HTML

<div class="holder">
    <div class="bar">BACK</div>
    <iframe class="frame"
 src="http://www.jsfiddle.net"/>
    
</div>

CSS

.holder{
    width: 400px;
    height:300px;
    position:relative;
}
.frame{
    width: 100%;
    height:100%;
    background blue;
}
.bar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:40px;
    background: red;