View Full Version : Frames question
heathabear
03-08-2003, 08:39 PM
Hi!
I'm designing my site, and right now the layout is in tables (http://www.chapsticky.net) and I want to make it in frames instead. I want two rows, but I want the first row to have only one column, and the second row to have 2. How do I go about doing this? Thanks so much for your help!
COBOLdinosaur
03-08-2003, 09:18 PM
<frameset rows="200,*">
<frame name="banner" src="top.html">
<framset cols="200,*">
<frame name="left" src="left.html">
<frame name="right" src="right.html">
</frameset>
</frameset>
FJbrian
03-10-2003, 05:49 AM
never saw that *, what does that do? please elaborate
As used here it means "the rest".
"MultiLength and MultiLengths
MultiLength attribute values may be an integer in pixels, a percentage of the horizontal or vertical space, or a relative length expressed as i* where i is an integer. In allotting space, a browser first allots pixel and percentage lengths, then divides the remaining space among all elements with a relative length. An element with a length of 3* will be allotted three times the space of an element with length 1*. The value * is equivalent to 1* and is often used to mean "fill the remaining space."
A MultiLengths value is a comma-separated list of MultiLength values."
http://www.htmlhelp.com/reference/html40/values.html#multilengths
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.