Beispiel:CSS3 repeating-linear-gradient-2.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link rel="stylesheet" media="screen" href="./Beispiel:SELFHTML-Beispiel-Grundlayout.css">
	<title>linear-gradient()</title>
<style>
body {
	height: 85vh;
	background-color: #8FBC8F;
	background-image:
		linear-gradient(transparent, transparent 30px, white 30px, white 32px),
		linear-gradient(to right, transparent, transparent 30px, white 30px, white 32px);
	background-repeat: repeat-y, repeat-x;
	background-size: 100% 32px, 32px 100%;
}
</style>
</head>
<body>
<h1>Verwendung von <code>linear-gradient()</code></h1>

</body>
</html>