This question already has an answer here:
- What does the “+” (plus sign) CSS selector mean? 11 answers
The below CSS is a section which runs a number of animations
Could you hint or if you prefer "translate" what the +
means and/or does? Any link to some documentation is welcome.
also how to use this which sounds like a method to change the delay amount with classes , yes... but of to use it in the html ?
.animated.delay {
-webkit-animation-delay: 450ms;
animation-delay: 450ms;
}
.animated.delay+.delay {
-webkit-animation-delay: 700ms;
animation-delay: 700ms;
}
.animated.delay+.delay+.delay {
-webkit-animation-delay: 1300ms;
animation-delay: 1300ms;
}
.animated.delay+.delay+.delay+.delay {
-webkit-animation-delay: 900ms;
animation-delay: 900ms;
}
.animated.delay+.delay+.delay+.delay+.delay {
-webkit-animation-delay: 1150ms;
animation-delay: 1150ms;
}
.animated.delay+.delay+.delay+.delay+.delay+.delay {
-webkit-animation-delay: 550ms;
animation-delay: 550ms;
}