coding

javascript

Apply styles only to Safari

Use this hack to apply styles only to safari

/Apply%20styles%20only%20to%20Safari

Sometimes you need to apply specific styles to Safari, in order to accomplish that you can use this hack:

@media not all and (min-resolution:.001dpcm) { 
     @supports (-webkit-appearance:none) {
          ...Your Css specific to safari code here
     }
}