>> English << | česky | Português | ZVON > Tutorials > CSS2 tutorial |
Intro / Search / ZVON |
>> Example 22 << | Prev | Next | Index | Contents |
If a background image has been given, its position and eventual repeated occurence can be specified.
XML Source | CSS stylesheet | Example link |
---|---|---|
(1)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:repeat-x} AAA {background-position: center} | View output |
XML Source | CSS stylesheet | Example link |
(2)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:repeat-x} AAA {background-position: bottom} | View output |
XML Source | CSS stylesheet | Example link |
(3)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:no-repeat} AAA {background-position: center right} | View output |
XML Source | CSS stylesheet | Example link |
(4)
<AAA> </AAA> | AAA {background-image:url("../Pictures/zvon.gif")} AAA {background-repeat:no-repeat} AAA {background-position: 20% 60%} | View output |