Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created September 26, 2013 18:43
Show Gist options
  • Save jbutko/6718701 to your computer and use it in GitHub Desktop.
Save jbutko/6718701 to your computer and use it in GitHub Desktop.
CSS, Safari: Target only Safari browser
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Safari and Chrome */
.flex-direction-nav-featured a{
margin-top: 4%;
}
/* Safari only override */
::i-block-chrome,.flex-direction-nav-featured a{
margin-top: 5%;
}
}
@EngineerPlug
Copy link

So can i just plug this in and it will work?

@Mil00Z
Copy link

Mil00Z commented Oct 31, 2022

So can i just plug this in and it will work?

yes, it's work for me so just check the Developer tools on Firefox so the hack appear on sometimes :)

@dkoutevska
Copy link

FYI:
@ntnbst's approach works great for desktop browsers, but it will target every mobile browser on iOS devices. :)

@tettoffensive
Copy link

@ntnbst's approach did not work for me on Safari desktop. It didn't affect any browser. If I remove the "not all", it seems to affect all browsers.

@cynthiaeddy
Copy link

@Valeka - many thanks! your solution worked for me.

@MakerTim
Copy link

MakerTim commented Mar 7, 2024

@supports (-webkit-hyphens: none) {
    @content;
  }

Works fine for me & without errors from linter(s)

@CerealKiller97
Copy link

@MakerTim Thank you so much!!! You made my day!!

@RobinSen2217
Copy link

@MakerTim Thank you very much, good sir!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment