Reputation: 18303
I want to make on iframe full screen. Here is the code:
http://jsbin.com/ibopes/1/edit
and here is the demo:
Why the scrollbar? For some reason I can't use position: absolute
for the iframe, and I don't want overflow: hidden
on body.
How to hide the scrollbar, and why is it there?
Upvotes: 4
Views: 3192
Reputation: 53228
Specify display: block
on your iFrame. jsBin normalizes the CSS for you:
#test {
width: 100%;
height: 100%;
min-height: 100%;
border: none;
background: #ff0000;
display: block;
}
See the working demo here > http://jsbin.com/ibopes/5
Upvotes: 9