Вы ищете repeating-linear-gradient
:
body {
margin:0;
height:100vh;
background:
repeating-linear-gradient(to bottom,transparent 0 4px,black 4px 8px) 80%/2px 100% no-repeat;
}
А если вы хотите получить блеклый цвет, вы можете комбинировать его с линейным градиентом:
body {
margin:0;
height:100vh;
background:
repeating-linear-gradient(to bottom,transparent 0 4px,#fff 4px 8px),
linear-gradient(to bottom,black,transparent);
background-size:2px 100%;
background-position:80%;
background-repeat:no-repeat;
}