Answers for "how to center an element with position fixed"

CSS
0

center position fixed element

.centered {
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
}
Posted by: Guest on September-22-2021
1

how to center a position fixed element horizontally

left: 50%;
margin-left: -400px; /* Half of the width */
Posted by: Guest on April-12-2020

Code answers related to "how to center an element with position fixed"

Browse Popular Code Answers by Language