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: linear-gradient(to bottom left, blue, yellow, red);
9
    }
10
</style>
11
12
<div class="box">This has a linear gradient.</div>