CSS Vertically & Horizontally Center Div [duplicate]

If the div has an fixed width and height use:
(if width=120px and height=80px)

position: fixed;
top: 50%;
left: 50%;
margin-left: -60px; /* negative half of the width */
margin-top: -40px; /* negative half of the height */

Leave a Comment