Prevent CSS validation for only one line

I have a problem that is almost identical to this question , but I'm looking for a different solution. Instead of disabling it globally, I would just disable it for one line. I know that I have seen many examples where various methods are used to suppress various warnings, and I am looking for one that I can add to my CSS to suppress this.

Examples of warning suppression methods and such #pragma warning disable 659or [SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors", Justification = "I have a good reason.")].

The CSS in which I want it to be quiet contains some CSS3 stuff, so it’s clear that it complains:

.round
{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

So, any idea how to remove my error Error 1 Validation (CSS 2.1): 'border-radius' is not a known CSS property name? I would prefer not to lose all my CSS checks, but I want him to ignore this "problem".

+3

Source: https://habr.com/ru/post/1745153/


All Articles