Is it possible to apply a chunk of (S)CSS to two different elements in two different breakpoints to avoid redundancy? I am using Bootstrap 4.6.
<div class="one">
<div class="content">Something</div>
</div>
<div class="two">
<div class="content">Something</div>
</div>
.one {
@include media-breakpoint-down(md) {
thead {
display: none;
}
}
I need the styles that apply to .one in breakpoint md also to apply to .two in breakpoint lg. Can this be achieved?