Create A Pulsing Background With CSS Animation
@keyframes pulse {
0%, 100% {
background-color: #f56a3f;
}
50% {
background-color: #9e42b0;
}
}body {
animation: pulse 20s infinite;
}PreviousConditional Styling For Unsupported CSS FeaturesNextDefine CSS Custom Properties With CSS Variables
Last updated