-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
26 lines (22 loc) · 770 Bytes
/
style.css
File metadata and controls
26 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* If you're targeting IE 9, 10, 11 you can try */
@media screen and (min-width:0\0) {
/* Enter CSS here */
}
/* If it's only IE11 */
@media all and (-ms-high-contrast:none)
{
.foo { color: green } /* IE10 */
*::-ms-backdrop, .foo { color: red } /* IE11 */
}
/* If it's for IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10+ specific styles go here */
}
/* Also, a Google search came up with this */
_:-ms-fullscreen, :root .ie11up { property:value; }
/* IE 6 IE 7 IE 8 IE 9 IE 10 */
@media screen\0 {…} No No Yes Yes Yes
@media screen\9 {…} Yes Yes No No No
@media \0screen {…} No No Yes No No
@media \0screen\,screen\9 {…} Yes Yes Yes No No
@media screen and (min-width:0\0) {…} No No No Yes Yes