we have a page having span tags with different widths. Initially in ie11 the widths weren't properly set. Hence we added the following css change to orient it correctly and it worked
span{
display: inline-block;
}
but the same css change is not working properly for ie9 . We followed some SO suggestions and tried adding doctype but it didnt work out.
Can you please suggest?