To get a fix for IE to display inline-block just like all the other normal browsers do it, do this.
I don’t know why, but this works for IE. Tested on IE while working for HealthNet
.myclass {
display: -moz-inline-box;
display: inline-block;
}
* html .myclass { display:inline; } /* for IE 6 */
* + html .myclass { display:inline; } /* for IE 7 */
Comments (1)