When saving to HTML format, HTML is generated with a frameset of two rows , in the pattern below:
<frameset rows="*,39" border=0 width=0 frameborder=no framespacing=0>
<frame src="bar_arquivos/sheet001.htm" name="frSheet">
<frame src="bar_arquivos/tabstrip.htm" name="frTabs" marginwidth=0 marginheight=0>
<noframes>
<body>
<p>Esta página usa quadros, mas o seu navegador não dá suporte para eles.</p>
</body>
</noframes>
</frameset>
The first frame
is the page where the contents of the tabs are displayed, and the second the page with the tab code ( tabstrip.htm
).
To change the position, simply reverse the order of the frames and also invert the *,39
, getting 39,*
(the 39
value means the height in pixels of the frame).
Then it would look like this:
<frameset rows="39,*" border=0 width=0 frameborder=no framespacing=0>
<frame src="bar_arquivos/tabstrip.htm" name="frTabs" marginwidth=0 marginheight=0>
<frame src="bar_arquivos/sheet001.htm" name="frSheet">
<noframes>
<body>
<p>Esta página usa quadros, mas o seu navegador não dá suporte para eles.</p>
</body>
</noframes>
</frameset>