Recent Changes - Search:

This wiki

Other pages

PmWiki

edit SideBar

405Code

ADDIE | Class notes | Code snippets | 405 home
Edit this menu

This page is for reference only. This is a place to put any short bits of code that are hard to find and remember.

To make a background image repeat vertically, horizontally, or not at all, insert the following code in the body tag:

To have no repeat:
background-repeat: no-repeat;

For horizontal repeat:
background-repeat: repeat-x;

For vertical repeat:
background-repeat: repeat-y;

To add a background image to a table cell, use the following code. This example uses a file named springs2.jpg
<td style="background-image: url(springs2.jpg); background-repeat: no-repeat;">

Edit - Attr - History - Print - Recent Changes - Search
Page last modified on July 04, 2010, at 07:24 PM