I want to float a div to center. Is it possible? text-align: center is not working in IE.
div
text-align: center
This has always worked for me.
Provided you set a fixed width for your DIV, and the proper DOCTYPE, try this
div { margin-left:auto; margin-right:auto; }
Hope this helps.