I have three big CSS files which have many classes. Same of those classes have the same name but are in different files.
Example: CSS1:
...
.btn-primary {
background: #000;
}
...
CSS2:
...
.btn-primary {
background: #fff;
}
...
and CSS3:
...
.btn-primary {
background: #4285F4;
}
...
Let's assume that all three CSS are called in my HTML page.
Is there a way to select in my web page only the .btn-primary
class from CSS3? If yes, how could I do it?