Placer les articles

/*The CSS place-items shorthand property allows you to align items along
both the block and inline directions at once (i.e. the align-items and 
justify-items properties) in a relevant layout system such as Grid or Flexbox. 
If the second value is not set, the first value is also used for it.*/

place-items: center stretch;
place-items: center start;
place-items: start end;
pitemlace-s: end center;
Panicky Peafowl