George and Susan Welcome to our HTML help page!
Home | HTML-Index | Basic HTML | HTML Structure


Using Images for Table Borders

This is the image I used for my border picture It measures 58 pixels high by 46 pixels wide. If you set the height and width attributes to match the height and width of the background image, the border will repeat the entire image along the border. Otherwise, it'll just use a portion of the image and repeat that.


You may have to play around with the width and height
to get the effect that you are looking for


Type this:
down


<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 ALIGN=CENTER> <TR><TD HEIGHT=58 COLSPAN=3 BACKGROUND="Your background url here"> </TD></TR> <TR><TD WIDTH=46 BACKGROUND="Your background url here"> </TD> <TD BGCOLOR ="#FFCC99" WIDTH=220 HEIGHT=117 ALIGN=CENTER>USING IMAGES<BR> FOR TABLE BORDERS<BR>LOTS OF FUN</TD> <TD WIDTH=46 BACKGROUND="Your background url here"> </TD> </TR> <TR><TD HEIGHT=58 COLSPAN=3 BACKGROUND="Your background url here"> </TD></TR> </TABLE>


The background image frames the contents of the table.

And you get the following:
down


USING IMAGES
FOR TABLE BORDERS
LOTS OF FUN


My home page

Back