How to target Safari for Mac only?

后端 未结 10 1876
终归单人心
终归单人心 2020-12-05 05:39

Hi I\'ve cross browser fixed a site on all thinkable PC browsers, including Safari. Now my smart ass designer sent me a screen shot of the whole layout collapsing on mac. I

10条回答
  •  伪装坚强ぢ
    2020-12-05 06:20

    for this question i have solution with the help of CSS, please find the below code fixes..

    /* Safari 10.1+ */
    
    @media not all and (min-resolution:.001dpcm) { 
      @supports (-webkit-appearance:none) {
          .classname{
            padding: 1px 0px; // css styles
          }
      }
    }
    

    Please try this in .scss file.

提交回复
热议问题