How to add Animation delay in CSS

  • Post category:CSS

Get the code of How to add Animation delay in CSS and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<h4>Animation delay</h4>
<div></div>
div {
  background: red;
  width: 50px;
  height: 50px;
  position: relative;
  animation: ramzan 9s infinite;
}
@keyframes ramzan {
  from {left: 0px;}
  to {left: 100px;}
}