I can’t understand where I am going wrong.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Repeating Linear Gradients</title>
<style>
div {
width: 500px;
height: 300px;
border: 4px solid black;
margin: auto;
repeating-linear-gradient(-45deg, black 0px, green 50px, red 40px, yellow 110px, blue 100);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
<!-- -->