iframe click above
by alekskorovin
HTML
<div class="box"></div>
CSS
body {
position: relative;
}
.box {
position: absolute;
width: 200px;
height: 200px;
background: red;
top: 0; left: 0; right: 0; bottom: 0;
}
by alekskorovin
<div class="box"></div>
body {
position: relative;
}
.box {
position: absolute;
width: 200px;
height: 200px;
background: red;
top: 0; left: 0; right: 0; bottom: 0;
}