When it comes to browser prefixes or hacks, we often think of:
(for Google and Safari) text-align: -webkit-right;
(for Firefox) text-align: -moz-right;
(for Opera) text-align: -o-right;
But what about Internet Explorer?
I've noticed that the below code works perfectly in Chrome, Mozilla, Safari, and Opera. However, in IE, the text doesn't align to the right. Any insights on this issue?
style="display: table-cell; width: 25%; vertical-align: bottom; text-align: -webkit-right;text-align: -moz-right;text-align: -o-right"