Web developers often face with deficiencies of Internet Explorer. There are many CSS hacks for IE allowing to overcome deficiencies in most cases, but I always use two hacks which are valid for all IE versions. That are
* html and
\9. Examples:
* html .ui-spinner {
vertical-align: middle;
}
.ui-spinner {
vertical-align: middle\9;
}
Only IE understand them. Other browsers ignore these syntax.
Does not work at all...
ReplyDeleteThe * html does not work, but the \9 works for IE < V11. Perfect :)
ReplyDeleteThank you very much!!!