After a little investigation, I came across this that does not use iframes at all. I know that some people will not touch frame sets using bargepole, but I would be interested to know that, according to people, there may be potential problems besides the obvious “frames that are not supported”.
<html>
<frameset rows="100,*" frameborder="no" framespacing="0">
<frame name="h" src="top_source" scrolling="no" noresize >
<frame name="t" src="main_source" scrolling="auto" noresize >
</frameset>
</html>
This allows you to use the wildcard character "*", which does not have div height attributes.
source
share