Web >> Design >> CSS >> How to override the style property with most likely success

 

use the !important declaration just after the property e.g.

.someclass
{
    font-color: red !important;
}

 

Note that !important declartion of the user (i.e. styles set at the browser) has higher precedence than the author (styles set at the website)