I have a class *
, but I can't override the proporties in this class later on? Why...?
* {
font-family:tahoma;
font-size:11px;
color:#3c6b93;
}
eg
.test {
font-size:17px;
color:red;
}
only way the .test
class can override is I delete each specific proporty in the *
class