/ Published in: CSS
Easy wrapper to center things, margin-left needs to be half of width
Expand |
Embed | Plain Text
#wrapper { width: 960px; position: relative; left: 50%; margin-left: -480px; }
You need to login to post a comment.
TimHaslam on 07/16/08
2 people have marked this snippet as a favorite
Easy wrapper to center things, margin-left needs to be half of width
#wrapper { width: 960px; position: relative; left: 50%; margin-left: -480px; }
You need to login to post a comment.