CSS - właściwości background-repeat


background-repeat

kod wynik kodu
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">
<meta http-equiv="Content-Language" content="pl">
<title>Example of CSS background-repeat property</title>
<style>
.box_01 {
background-image: url("grafika/buzia_03.png");
background-repeat: repeat;
}

.box_02 {
background-image: url("grafika/buzia_03.png");
background-repeat: repeat-x;
}

.box_03 {
background-image: url("grafika/buzia_03.png");
background-repeat: repeat-y;
}

.box_04 {
background-image: url("grafika/buzia_03.png");
background-repeat: no-repeat;
}

</style>
</head>
<body>

<h1 class="box_01">Repeating background image<br />Repeating background image<br />Repeating background image<br /></h1>
<h1 class="box_02">Repeating background image<br />Repeating background image<br />Repeating background image<br /></h1>
<h1 class="box_03">Repeating background image<br />Repeating background image<br />Repeating background image<br /></h1>
<h1 class="box_04">Repeating background image<br />Repeating background image<br />Repeating background image<br /></h1>
</body>
</html>