1.

How Do I Have A Non-tiling (non-repeating) Background Image?

Answer»

With CSS, you can use the BACKGROUND-repeat property. The background repeat can be included in the short HAND background property, as in this example:

body {
background: white url(example.gif) no-repeat ;
COLOR: BLACK ;
}

With CSS, you can use the background-repeat property. The background repeat can be included in the short hand background property, as in this example:

body {
background: white url(example.gif) no-repeat ;
color: black ;
}



Discussion

No Comment Found