cheat-sheets
cheat-sheets copied to clipboard
center things
My new favourite way to vertically + horizontally center something:
.parent { display: grid; place-items: center; }
So much more semantic than justify-content/align-items!
See it in action: https://t.co/0ohvfbQ64a
H/t to the CSS Tricks newsletter
Via Josh Comenu on Twitter
:wave: @spences10
I like that syntax with CSS Grid too. I spun up a few examples of common ways I center an element vertically and horizontally in this CodePen if it helps at all :)
https://codepen.io/tannerdolby/pen/eYGJpqa?editors=1100