I want to target everything in the body except 2 classes
body {
background: gray;
}
What I am try:
body:not(.myCustomClassWhereIsBackgroundWhite) {
background: white;
}
My angular component Profile:
<div class="myCustomClassWhereIsBackgroundWhite">
...other context
</div>
In this component is not affected background: white;
This is no work ? Please provide me some solution ? I want to some class to change and not be background gray