TLDR:
Learn how to center an element with position: absolute inside its parent.
Introduction
You should probably be thinking, βWhy not u...
For further actions, you may consider blocking this person and/or reporting abuse
How's that better than the following? Just being curious as I always opt for the following if for some very specific reason flexbox is not the option π:
One more CSS instruction I guess π€£It seems clear and straightforward though, I liked it πͺ
My most up voted stack overflow answer was about this π
answer re: Why is translateY(-50%) needed to center an element which is at top: 50%?
top:0 (default)
By default, your element is at the top of the page, and the top of the element is at 0:
top:50%
When you move it down by 50% height (50% of the entire page), the top of theβ¦
Nice detailed answer. It's a tricky topic πͺ
Nice, thank for sharing
Really happy you liked it π
That's clever π€©
Thanks man π
The "wat" image just about killed me. Seriously nice tip, has come in handy for me often!
hahaha glad you liked Trev π
Resize the window until reached half of the screen, you will see an unwanted scrollbars.
Doesn't grid do this automatically with justify-items:center?
Sure! Grid or flexbox are my main ways to go too.
However, this little hack comes in handy when I need to position an element relative to its parent.
i.e. an "X" icon at the top right corner of an image.
Sometimes i make use of
Margin: 0 auto;
Or
I could just place the element i want centered in a center tag