views:

325

answers:

2
A: 

This was a known regression when IE7 was released (occurs in IE8 too) that MS rejected (from their kinda-public bug tracker)

this only happens with <frames> in IE7 or IE8

<iframe> is OK.

Basically using framesets and IE7+ is a royal pain. I would highly recommend against it.

scunliffe
I'm only using <iframe> tags
I've found other posts with sample code outlining the same problem. http://www.infoqu.com/dev/css-help/content-overlapping-scrollbars-146496-1/ (I'd like to stick to using iframes if possible)
+2  A: 

Changed scrolling property on iframe to be auto rather than yes and scrollbars are behaving as expected.

<iframe class="frmProperty" height="100%" frameborder="0" id="ifrmProperty" name="ifrmProperty" width="100%" scrolling="auto" ></iframe>