x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<style>
5
  div {
6
    background: radial-gradient(at bottom right, yellow, red);
7
    color: white;
8
    padding: 30px;
9
    height: 160px;
10
    font-family: sans-serif;
11
    font-size: 1.5em;
12
  }
13
</style>
14
15
<div>
16
  Radial gradient example.
17
</div>