Hello
I'm working on a web development project where i need to take care of the design and working of the application. I found it very hard to style my UI which should be compatible will all the prominent browsers.
For example to align the text inside a div i gave
text-align:center
which worked only in IE and not in Firefox, Safari, Chrome and Opera. So i gave the Mozilla CSS style
text-align:-moz-center
which appears to fix the position only in Firefox and not in Safari, Chrome and Opera. So how to apply styles to the elements that are cross-compatible with all the browsers? Are there any CSS libraries to help us here? Any insights provided are very much appreciated.
Thank you.
NLV