/ Published in: CSS
Expand |
Embed | Plain Text
.center { width: 300px; height: 300px; position: absolute; left: 50%; top: 50%; margin-left: -150px; margin-top: -150px; }
Comments
Subscribe to comments
You need to login to post a comment.

Not much explaination though i guess it is just a snippet ...
basiclly m-l is - half width and m-t is - half height
though i would use just 1 line rather then 2:
margin:-150px 0 0 -150px;