I want to float a div to center. Is it possible? text-align: center is not working in IE.
div
text-align: center
Following solution worked for me.
.algncenterdiv { display: block; margin-left: auto; margin-right: auto; }