How do I specify IE 11 in my css? I have other IE accounted for as follows.
#teleport {
bottom: -230px;
bottom: -280px\9; /* IE 8 and below */
*bottom: -280px; /* IE 7 and below */
_bottom: -280px; /* IE 6 */
}
How do I specify IE 11 in my css? I have other IE accounted for as follows.
#teleport {
bottom: -230px;
bottom: -280px\9; /* IE 8 and below */
*bottom: -280px; /* IE 7 and below */
_bottom: -280px; /* IE 6 */
}
_:-ms-fullscreen, :root .ie11up, #teleport { bottom: -280px; }
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up, #teleport{bottom: -280px; }
}
Problem solved.