cara menambahkan item baru di atas yang lama di 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