I have in my page a button which when clicked displays a div (popup style) in the middle of my screen.
div
I am using the following CSS to center the
Correct Method is
.PopupPanel { border: solid 1px black; position: fixed; left: 50%; top: 50%; background-color: white; z-index: 100; height: 400px; margin-top: -200px; width: 600px; margin-left: -300px; }