I wanted to know if it’s possible with the “new” CSS3 (and its animations) to display elements one after the other (maybe with CSS3 animations or a mix of :nth-child and counter?)? I wanted to make some sort of countdown which displays after some seconds every time another element? With JavaScript that wouldn’t be a problem (and I know how to do it) but is it possible with CSS3 (with some of the -webkit-animation-* attributes maybe?)?
HTML is like that (but could be also changed it needed):
<div id="count-it">
<p>10</p>
<p>9</p>
</div>
Hey, played a bit with webkit animation property and here is a little thingy I made that you might found usefull or it should at least give your an idea or two (note: positioning is not very acurate):
HTML
CSS