I want to put the class that have more than one class into my css, for examples I have this code in my html.
class="nav nav-pills justify-content-end"
And I want to change all of the above to disappear so I have to put "display: none". I have tried this in css but it doesn't seems to work.
.nav nav-pills justify-content-end{
display: none;
}
Ps: I use bootstrap framework