gradiant5
by rootjang
HTML
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>circle grad</title>
<style>
.grad1 {
width: 300px;
height: 100px;
text-align: center;
background: skyblue;
background: -webkit-radial-gradient(red, yellow, skyblue);
background: radial-gradient(red, yellow, skyblue);
}
.grad2 {
width: 300px;
height: 100px;
text-align: center;
background: skyblue;
background: -webkit-radial-gradient((red, yellow 20%, skyblue));
background: radial-gradient(red, yellow 20%, skyblue);
}
</style>
</head>
<body>
<div class="grad1">색상중지점 그라데이션</div>
<div class="grad2">색상중지점 위치 지정 그라데이션</div>
</body>
</html>