I have a simple row with two columns
<div class="row">
<div class="col-9">
hello
</div>
<div class="col-3">
world
</div>
</div>
However due to the small screens i would like change the column classes if on mobile and so my classes would be
<div class="row">
<div class="col-8">
hello
</div>
<div class="col-4">
world
</div>
</div>
is there a method i can use to switch the classes like this? I am using thymeleaf with spring boot for backend and bootstrap 5 for frontend.