html - (HTML5 & CSS) Issue with classes -
i don't understand why class no-support isn't updating element bold , red color. if type path
$tbody tr .no-support
it has red color it's not bold? can please explain? here code @ jsfiddle http://jsfiddle.net/sm8j8/
you should use font property , !important
rewrite tbody td:first-child
color
css property :
.no-support { font-weight: bold; color:red !important; }
Comments
Post a Comment