I wants to create html theme and so use bootstrap 4.
but i should repeat bootstrap class for some places for example
<div class="row border border-top-0 mt-2 p-2 bg-info">One</div>
<div class="row border border-top-0 mt-2 p-2 bg-info">example 2</div>
<div class="row border border-top-0 mt-2 p-2 bg-info">some thing</div>
can i aggregate bootstrap classes to one names for example:
myclass="row border border-top-0 mt-2 p-2 bg-info"
and use this?
<div class="myclass">One</div>
<div class="myclass">example 2</div>
<div class="myclass">some thing</div>
Note:copy and Paste is bad Idea.if use copy and paste, then if need to add one other class ,should add to all of them