empty space between frames, html?

K-Dog

New member
ive decided to use frames to make my site look a little nicer, but ive ran into a problem, even though i put frameborder="0", there is still empty space between the two frames, how can i make it to where the bg color of the frame fill everything up to the end of the frame? do i make sense? haha. thanks

heres the code:



<frameset cols="21%,45%,34%">

<frame src="borders.html" title="borders" name="borders" frameborder="0" scrolling="no" marginwidth="0" noresize border="0" />
<frame src="main.html" title="main"name="main" frameborder="0" scrolling="auto" marginwidth="0" noresize border="0" />
<frame src="borders2.html" title="borders2" name="borders2" frameborder="0" scrolling="no" marginwidth="0" noresize border="0"/>

</frameset>
 
you should be using divs instead


check out this link for a simple explanation of how to implement the basics of using css and divs for your site layout then go from there... http://programming.top54u.com/post/Div-3-Columns-Layout-using-CSS-Styles-Div-layout-1.aspx
 
Back
Top