Created
October 25, 2018 07:10
-
-
Save kitt-vl/80128e71b32faece8aa8c18967d06660 to your computer and use it in GitHub Desktop.
Bootstrap 4 visual XS|SM|MD|LG|XL helper (place this code in start of body tag)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Adopt colors and sizes at your favor --> | |
<div style="position: fixed; font-size: 32px; background: #36f21c; left: 0; top: 0; z-index: 9999;"> | |
<span class="d-block d-sm-none"> | |
XS | |
<br /> | |
</span> | |
<span class="d-none d-sm-block d-md-none"> | |
SM | |
<br /> | |
</span> | |
<span class="d-none d-md-block d-lg-none"> | |
MD | |
<br /> | |
</span> | |
<span class="d-none d-lg-block d-xl-none"> | |
LG | |
<br /> | |
</span> | |
<span class="d-none d-xl-block"> | |
XL | |
<br /> | |
</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment