I\'m trying to get a div that has position:fixed center aligned on my page.
position:fixed
I\'ve always been able to do it with absolutely positioned divs using this \
For the ones having this same problem, but with a responsive design, you can also use:
width: 75%; position: fixed; left: 50%; margin-left: -37.5%;
Doing this will always keep your fixed div centered on the screen, even with a responsive design.
div