DEV Community

Discussion on: 8 ways to center elements with CSS

Collapse
 
sandra_lewis profile image
Sandra Lewis • Edited

Well explained 🙌🏻
You can use this shorthand for centering elements with grid as well

.parent { 
    display: grid; 
    place-items: center; 
}
Enter fullscreen mode Exit fullscreen mode

place-items is a shorthand for align-items and justify-items

Collapse
 
tjasa profile image
Tjaša

Thank you ☺️ To be hones I haven't really used grid much but I plan on giving it a proper chance soon. Thank you for sharing ♥️