I have a question regarding bootstrap 3.0 classes order, now if I write the following where I am starting from sm till lg:-
<div class="col-sm-4 col-md-4 col-lg-4 address">
will it have any different if I change the class order as follow from lg to sm:-
<div class="col-lg-4 col-md-4 col-sm-4 address">
or the order does not matter ?