Let's go back to something a little bit simpler.
<FRAMESET COLS="50%,50%">
<FRAME SRC="shameem.html">
<FRAME SRC="sharf.html">
</FRAMESET>
We can put pictures in the frames if we want to.
<FRAMESET COLS="50%,50%">
<FRAME SRC="world.gif"
WIDTH=146 HEIGHT=162>
<FRAME SRC="sharf.html">
</FRAMESET>
VIEW
IT
Remember it is always good practice to include HEIGHT
& WIDTH attributes for any image tag.
Let's try to frame the picture nice and neat. First shrink
the left window to 146 pixels wide. Since we are using an
absolute dimension should make the other frame elastic.
<FRAMESET COLS="146,*">
<FRAME SRC="world.gif" WIDTH=146
HEIGHT=162>
<FRAME SRC="sharf.html">
</FRAMESET>
Next we will divide the left frame horizontally into 2
sections. The top section to be 162 pixels high and the bottom
section to be whatever is left over. We will put in world.gif
and Shameem respectively.
<FRAMESET COLS="146,*">
<FRAMESET
ROWS="162,*">
<FRAME SRC="world.gif"
WIDTH=146 HEIGHT=162>
<FRAME SRC="shameem.html">
</FRAMESET>
<FRAME SRC="sharf.html">
</FRAMESET>
VIEW
IT
As you can see, we have a bit of a problem.
The scrollbars that you see can be specified as YES,
NO or AUTO. YES means the
window gets scrollbars- whether they're needed or not. NO
means there will be no scrollbars, even if your frame contents
are as big as Koothanallur... the browser will simply display as
much as it can. AUTO is the default. If scrollbars
are needed, they appear, if they are not needed they stay conveniently
out of the way. Let's get rid of our scrollbars.
<FRAMESET COLS="146,*">
<FRAMESET ROWS="162,*">
<FRAME SRC="world.gif"
WIDTH=146 HEIGHT=162 SCROLLING=NO>
<FRAME SRC="shameem.html">
</FRAMESET>
<FRAME SRC="sharf.html">
</FRAMESET>
We still have a problem. The image is not in the frame right.
The next two attributes deal with margins. The browser
automatically gives each frame some empty space around its
contents. This is normally necessary for asthetics. You can
control the size of these margins by using MARGINWIDTH
and MARGINHEIGHT. They control the left & right
and top & bottom margins respectively. We will set them both
to 1. (1 is the minimum)
<FRAMESET COLS="146,*">
<FRAMESET ROWS="162,*">
<FRAME SRC="world.gif"
WIDTH=146 HEIGHT=162 SCROLLING=NO
MARGINWIDTH=1
MARGINHEIGHT=1>
<FRAME SRC="shameem.html">
</FRAMESET>
<FRAME SRC="sharf.html">
</FRAMESET>
Unfortunately that still doesn't quite do it. The frame
dimensions are measured center to center.
There is also that minimum border of 1 to deal with. Since
the default border size is 6 pixels, we have to add 8 to each
image dimension (half of 6, plus 1, times 2). If that's
confusing, just add 8 to each image dimension to get your window
size.
<FRAMESET COLS="154,*">
<FRAMESET ROWS="170,*">
<FRAME SRC="world.gif"
WIDTH=146 HEIGHT=162 SCROLLING=NO
MARGINWIDTH=1 MARGINHEIGHT=1>
<FRAME SRC="shameem.html">
</FRAMESET>
<FRAME SRC="sharf.html">
</FRAMESET>
This will display your image perfectly in the window, or at
least pretty darn close. Have you ever seen an image
in a frame that was cut off on one or more sides? If you use
absolute dimensions, along with an elastic frame... And if you
add 8 to the size of the image to get your frame dimensions, by
golly you'll look just fine to pert near everyone. <--BACK NEXT-->
|