I am making a website and I\'m trying to vertically center:
position: absolute; width:1200px; height:600px; top: 50%; left: 50%; margin-left: -600px;
top:50%; works fine, but wont "center" the item, it will place it's top edge 50% of the page's height from the top. Similarly to how you have margin-left:-600px; you should also add margin-top:-300px;
top:50%;
margin-left:-600px;
margin-top:-300px;