My JSF web application is left aligned and it looks odd. I wanted to make its appearance centered in all browsers.
I tried this and it didn’t work:
#main {
margin:0 auto;
text-align:center;
}
I also tried:
div align="center"...
inside html body, but no use.
How can I center #main?
try
Also remember to set a width else it will be 100% causing it to be the whole page making it look left aligned.