I notice a Div in my project is not aligning properly in IE only. I want to target only IE (any version) to fix this. Below is the styles applied to the div:
#my-sidebar {
position: absolute;
top: 0;
right: 133px;
margin: 0;
padding: 0;
}
I need the declaration right: 133px; to only apply in IE and only when the page width is 600px and above. How can I achieve this?