CSS rule to style Safari 16.x only

Hello everyone

I was wondering if someone already figured out the CSS rules to only style Safari 16 on MacOS. Since the update some of my stylings break (thanks apple dev team) and I really need to fix them as soon as possible. This rule:

@media not all and (min-resolution:.001dpcm) { @supports (-webkit-appearance:none) and (display:flow-root) { .selector { property:value; } } }

will not work

kind regards

Rey

It works in iOS16 down to iOS 10:

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

Hi team, Any other -webkit to use ??

This one:

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

wouldnt work. Thanks

CSS rule to style Safari 16.x only
 
 
Q