The easiest way is to combine the selector:
$('.a.b.c').css({'color':'blue'});
Another way would be to use the function filter()with the first selector and add selector 2 to N inside filter()using the function is()- see the demo below:
$('.a').filter(function(){
return $(this).is('.b') && $(this).is('.c')
}).css({'color':'blue'});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="a">1</div>
<div class="b">2</div>
<div class="c">3</div>
<div class="a b">4</div>
<div class="a c">5</div>
<div class="b c">6</div>
<div class="a b c">7</div>
Run codeHide result