MENU
@support
This declares rules on the condition that some CSS properties are or are not supported by the browser.
Below, the browser will fall back to use the 'text-align' property if the browser does not support the 'text-align-last' property with the 'justify' value.
@supports not ((text-align-last: justify) or (-moz-text-align-last: justify)) {
p {text-align: justify;}
}