<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
  <title>CSS Prefixes</title>
</head>
<body>
  <i class='bx bxs-sun sunji'></i>
</body>
</html>
body
{
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sunji
{
  font-size: 4rem;
  
  animation: sunrise 2s linear 0s infinite normal none;
  -webkit-animation: sunrise 2s linear 0s infinite normal none; /* For old OIS brosers */
  -ms-animation: sunrise 2s linear 0s infinite normal none; /* For old Microsoft browsers */
  -moz-animation: sunrise 2s linear 0s infinite normal none; /* For old Firefox browsers */
  -o-animation: sunrise 2s linear 0s infinite normal none; /* For old opera browsers */
}


@keyframes sunrise
{
  100%
  {
    transform: rotate(360deg) scale(2);
  }
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.