0

I want to show a top bar on my page with height 72 pixels height and then load an iframe beneath which fills the full page (minus height of the topbar).

Before I can even start to take my topbar into account...somehow my iframe ignores any height attribute I set to it:

width='100%' height='1200' style='overflow:hidden;height:100%;width:100%' 

or 

width='100%' height='100%' style='overflow:hidden;height:100%;width:100%' 

I have been reading this post: Full-screen iframe with a height of 100%

But no luck. See it live here: http://www.trouwlocaties.com/extpage.aspx?id=315&t=1

Community
  • 1
  • 1
Adam
  • 6,041
  • 36
  • 120
  • 208

1 Answers1

1

Try the first removing height:100% from the style, now the iframe should be 1200px of height.

kimiko88
  • 60
  • 1
  • 6