x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    .box {
5
        font-size: 5vw;
6
        padding: 10vw;
7
        border: solid;
8
        background: repeating-linear-gradient(yellow 20%, orange 40%);
9
    }
10
</style>
11
12
<div class="box">This has a repeating linear gradient.</div>