>> English << | česky | Português | ZVON > Tutorials > CSS2 tutorial |
Intro / Search / ZVON |
>> Example 21 << | Prev | Next | Index | Contents |
You can specify how many times the background image is repeated. The possibilities are: the default repeat (repeats both horizontaly and verticaly - 1), repeat-x (horizontal repeat only - 2), repeat-y (vertical repeat only - 3) and no-repeat (4)
XML Source | CSS stylesheet | Example link |
---|---|---|
(1)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:repeat} | View output |
XML Source | CSS stylesheet | Example link |
(2)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:repeat-x} | View output |
XML Source | CSS stylesheet | Example link |
(3)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:repeat-y} | View output |
XML Source | CSS stylesheet | Example link |
(4)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:no-repeat} | View output |