is there a css hack for safari only NOT chrome?

后端 未结 18 1723
旧时难觅i
旧时难觅i 2020-11-22 06:50

im trying to find a css hack for just safari NOT chrome, i know these are both webkit browsers but im having problems with div alignments in chrome and safari, each displays

18条回答
  •  無奈伤痛
    2020-11-22 07:03

    There is a way to filter Safari 5+ from Chrome:

    @media screen and (-webkit-min-device-pixel-ratio:0) { 
        /* Safari and Chrome */
        .myClass {
         color:red;
        }
    
        /* Safari only override */
        ::i-block-chrome,.myClass {
         color:blue;
        }
    }
    

提交回复
热议问题