How To Center a “position: absolute” Element? - Save My Knowledge
Tuesday, July 28, 2015

How To Center a “position: absolute” Element?

I have a problem when centering the position of my div when my css using position: absolute. I cannot use "margin: auto" as I like. After some research, I found out how to make my div center. By using:



position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;

And I hope my solution can give you all good sleep