Is there away to connect the sizes of divs as I did with the frames below?
I'm talking about the *
in rows="*, 16"
, that takes the remaining space.
<frameset frameborder="0" rows="70, *, 30">
<frame name="toolbar" src="toolbar.html" marginwidth="8px" marginheight="8px" />
<frameset id="lineNumFrameset" frameborder="0" cols="50, *">
<frameset rows="*, 16">
<frame id="other_frame" name="lineNum" src="lineNum.html" marginwidth="8px" marginheight="8px" align="top" />
</frameset>
<frame name="editor" src="editor.html" marginwidth="8px" marginheight="8px" />
</frameset>
<frame name="statusbar" src="statusbar.html" marginwidth="8px" marginheight="8px" />
</frameset>
Thank you.