I have a div, and I want the input box to be place at it\'s center. How can I do this?
#the_div input { margin: 0 auto; }
I'm not sure if this works in good ol' IE6, so you might have to do this instead.
/* IE 6 (probably) */ #the_div { text-align: center; }