I would like to apply css styles like
margin-left, height,width
only for IE browser. I tried following ways but it is applying for other browsers also.
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)
#chart
{
margin-top : -105px;
}
@media screen and (min-width:0\0)
{
#chart
{
margin-top : -105px;
}
}
@media screen/9 and (-ms-high-contrast: none), (-ms-high-contrast:
active)
#chart
{
margin-top : -105px;
}
Please help. Thanks.