Can I have CSS which is IE specific?
In this situation, I can't include another script.
So I can't do this:
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="all-ie-only.css" />
<![endif]-->
and this does not work:
<!--[if IE]>
<style>
@media only screen and (min-width: 943px) and (orientation:portrait){
.ele{
width:100px;
}
}
</style>
<![endif]-->
Is there any other way of adding IE specific CSS?