Imagine having the following HTML structure:
<div class="outer">
<div class="inner">
</div>
</div>
However, under the condition
@media (min-width: 890px) and (max-width: 958px)
, you want it to look like this:
<div class="inner">
<div class="outer">
</div>
</div>
Do you think this is achievable? If yes, how would you go about implementing it?