http://www.w3.org/TR/REC-CSS2/colors...und-properties
Zitat:
'background-repeat'
Value: repeat | repeat-x | repeat-y | no-repeat | inherit
Initial: repeat
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual
If a background image is specified, this property specifies whether the image is repeated (tiled), and how. All tiling covers the content and padding areas of a box. Values have the following meanings:
repeat
The image is repeated both horizontally and vertically.
repeat-x
The image is repeated horizontally only.
repeat-y
The image is repeated vertically only.
no-repeat
The image is not repeated: only one copy of the image is drawn.
Example(s):
BODY {
background: white url("pendant.gif");
background-repeat: repeat-y;
background-position: center;
}
|
Und das schöne daran: es funktioniert auch ohne Frontpage und sowohl im IE, als auch bei Mozilla, Netscape, Opera, ....