is there a css hack for safari only NOT chrome?

后端 未结 18 1538
旧时难觅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:18

    This hack 100% work only for safari 5.1-6.0. I've just tested it with success.

    @media only screen and (-webkit-min-device-pixel-ratio: 1) {
         ::i-block-chrome, .yourcssrule {
            your css property
        }
    }
    

提交回复
热议问题