Beispiel:CSS3 background-repeat-busy.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!DOCTYPE html>
<html lang="de">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>background-repeat</title>
	<style>
body {
	background-image: url("https://wiki.selfhtml.org/images/c/cc/Busy.gif");
	background-repeat: repeat;
	height: 100vw;
	width: 100vw;
	overflow: hidden;
	padding: 0;
 }
</style>
	</head>
	<body>
	</body>
</html>