I'd like to conditionally apply justify-content: safe center
based on browser support like
@supports (justify-content: safe center) {
div {
justify-content: safe center;
}
}
Both Blink and Webkit which currently do not support this keyword pass the condition while not actually supporting the safe
keyword as seen by the overflowed second line in below example:
https://jsfiddle.net/pgw3t1hq/
Is there a way to get these browsers to fail the condition and reflect what they actually support?