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