いつもご親切にありがとうございます。
「コメントを一つだけ表示しつつフェードアウトさせる」ですが、これでいけたと思います。
@keyframes timerout {
100% { transform:translateX( -100% ); opacity: 0;}
}
.comment:nth-last-child(-n+2) {
animation: 1s ease 3s timerout forwards;
}
.comment:nth-last-child(n+2) { opacity: 0; }
もし間違っていたら申し訳ございません。