Animation

animation

Learn how to use the CSS animation property.

CSS animation

The animation property sets the animation for an HTML element.

Syntax

.element {
  animation: slidein 1s;
}

HTML Context Example

<div class="card">
  This is a styled element.
</div>

<style>
.card {
  animation: slidein 1s;
}
</style>

Notes

Experiment in the CSS playground to see how this affects layout and styling.