Comment ajouter de nouveaux articles sur les anciens en CSS

you could wrap those items in a container then display it as flex and set the 
direction to column reverse
somthing like this:
 container{
   display:flex;
   flex-direction:column-reverse;
}
   
Stancillous Raymond