scrolling - Iframe always showing scroll bars in IE7 - Stack Overflow
january 2012 by ChrisLTD
adding scroll="no" to the body of my iframe target page worked for me. In total, here's the additional cruft I've added to my iframe for various browsers, perhaps this will help someone else:
iFrame source HTML:
<body style="overflow:hidden;" scroll="no">
iFrame tag on page:
<iframe width="280" height="196" src="http://dev.example.com/source.html"
style="overflow:hidden;" marginheight="0" marginwidth="0" frameborder="0">
</iframe>
iframe
scrollbar
ie
iFrame source HTML:
<body style="overflow:hidden;" scroll="no">
iFrame tag on page:
<iframe width="280" height="196" src="http://dev.example.com/source.html"
style="overflow:hidden;" marginheight="0" marginwidth="0" frameborder="0">
</iframe>
january 2012 by ChrisLTD