Stick an element to the top-right corner
Make an element stay at the top-right corner of your responsive grid using one instruction.
grid-area: 1/auto/auto/-1;
/* OR
grid-row-start:1;
grid-column-end:-1
*/
The element can be anywhere in your HTML code.
See the Pen Float element to top/right corner by Temani Afif (@t_afif) on CodePen.