10 lines
261 B
HTML
10 lines
261 B
HTML
<!doctype html>
|
|
<title>radial-gradient() with container relative unit (reference)</title>
|
|
<style>
|
|
#gradient {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: radial-gradient(50px circle at 50px, green, blue);
|
|
}
|
|
</style>
|
|
<div id="gradient"></div>
|