I know it's very easy to find out which browser the user is using to access my site. But how does it look like if I want to check the user browser for a certain version (or higher) in order to carry out the corresponding action.
As an example I would like to use the CSS property "mix-blend-mode".
If we look at the supporting browser versions at CANIUSE or MOZDEV, we can see that all modern browsers from a certain version support this CSS property (except for our old friend Internet Explorer ...)
We could now build multiple if-queries according to the browser and its version, but how can I write the query so that it understands that all versions that come after the version are also "ok" for my property?