Today I Learned - Rocky Kev

TIL difference between justify-content vs justify-items

POSTED ON:

TAGS:

justify-content vs justify-items

The justify-content property aligns columns within the container.
The justify-items property aligns grid items within their tracks (not the entire container)

REFERENCE:
Stack Overflow


Related TILs

Tagged:

TIL the alternate keyword

If 'alternate' appears along with the stylesheet keyword, the linked file is an alternative stylesheet. It won’t be applied to the document, but it will be ready for when we need it.

TIL Logical Properties

For that sweet sweet Internationalization you want to avoid directional words like 'left', 'right', 'top', and 'bottom'.

TIL Using pseudo-classes in your querySelector!

let notTuna = document.querySelectorAll('.sandwich:not(.tuna)')