Of course, a div can have as many classes as you want (this applies to both bootstrap and HTML in general):
<div class="active dropdown-toggle"></div>
Just separate the classes by spaces.
Also: keep in mind that some bootstrap classes should be used for the same material, but in different cases (for example, alignment classes , you may want to align something left, right or center, but it should only be one of them), and you should not use them together, otherwise you will get an unexpected result, basically, what will happen is that the class with the highest specificity will be applied (or, if they have the same, then it will be the one that defined the latter in CSS). So keep in mind that you should avoid these things:
<p class="text-center text-left">Some text</p>
DarkAjax Feb 14 '13 at 21:40 2013-02-14 21:40
source share