/ Published in: CSS
URL: http://stackoverflow.com/questions/114543/how-to-center-div-in-div
Of course, you don't have to set the width to 50%. Any width less than the containing div will work. The margin: auto is what does the actual centering.
Expand |
Embed | Plain Text
#inner { width: 50%; /* This is a example number */ margin: auto; }
You need to login to post a comment.
