View Full Version : No Repeat Background on Tables


acktacky
01-17-2003, 01:45 AM
I doubt this is even possible, which I guess means it isn't that big of a deal if it can't be done, just a little curious.

Is there any way to postion a background inside a table? I want to postion it at the bottom and none repeating... Is there like a CSS code for it or something? Or is it not even possible?

Thanks for you time, and sorry for the dumb question.

Alcy
01-17-2003, 02:24 AM
It's not a dumb question, and yes it is possible :).

You can put this between your <head> </head>:
<style type="text/css">
table
{
background-repeat:no-repeatt
}
</style>

OR....

You can just add it into the table:
<table style="background-repeat:no-repeat>

acktacky
01-17-2003, 02:32 AM
Awesome, thanks a lot. ^_^ I thought it was along the lines of that, but I just wanted to make sure. Thanks again!