Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

edge media query

For Internet Explorer
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .banner-wrapper {
    	background: rgba(0, 0, 0, 0.16);
	}
}

For Edge
@supports (-ms-ime-align:auto) {
    .banner-wrapper {
    	background: rgba(0, 0, 0, 0.16);
  	}
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #edge #media #query
ADD COMMENT
Topic
Name
6+6 =