How To Apply Css Only Safari Browser Code Example


Example 1: Safari only CSS hack


@media not all and (min-resolution:.001dpcm) { 
@supports (-webkit-appearance:none) {
...
}
}

Example 2: css for safari only


@media not all and (min-resolution:.001dpcm)
@supports (-webkit-appearance:none)

Example 3: css especifico para safari


/* Safari 7.1+ */

_::-webkit-full-page-media, _:future, :root .safari_only {

color:#0000FF;
background-color:#CCCCCC;

}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy