Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
can i make the big table layout have a background?
like for example i have a layout that has only one big white table in the center instead of a bunch of tables for each section..i want to know if i can change the background to a picture and if i can, can u tell me how plz?? thank u!!
1 Answer
- Anonymous1 decade agoFavorite Answer
TABLE {
background-color: #FFFFFF;
background-image: url(images/cellpic2.jpg);
background-repeat: repeat-y;
}
The above example would be found in an CSS file or at the head of an HTML page.
Use background-color to default to a color of your choice in case the image doesn't load ( #FFFFFF being all white ).
The repeat-y reference indicates whether the image will repeat if the image size is smaller than the table container.
Hope this helps. If you have additional questions you can e-mail me.