I'd like to set two different responsive layouts (with w3.css):
- For mobile (small) and medium device
- For large device
I don't want to repeat my code just to specify a different responsive layout.
My code is like:
<div class="w3-content">
<div class="w3-row-padding">
<div class="w3-third">
[...]
</div>
<div class="w3-twothird">
[...]
</div>
</div>
</div>
I'd like to show w3-third
over w3-twothird
on small and medium devices.
Thanks