gradiant4

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>
    .grad {
      width: 300px;
      height: 100px;
      text-align: center;
      background: red;
      background: -webkit-radial-gradient(50% 50%, circle closest-side, white, yellow, green);
      background: radial-gradient(circle closest-side at 50% 50%, white, yellow, green);
    }
  </style>
</head>
<body>
  <div class="grad">원형크기 그라데이션</div>
</body>
</html>