Last active
January 20, 2021 20:49
-
-
Save felixkosmalla/1c143c6bc6bc22c817ea to your computer and use it in GitHub Desktop.
Bootstrap Screen Size Indicator. Use this to debug your responsive design.
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
<div class="size-indicator" style="position:absolute; z-index:100; top:10px; left:10px;"> | |
<span class="label label-default visible-xs-inline">Extra Small (<768px)</span> | |
<span class="label label-primary visible-sm-inline">Small (≥768px)</span> | |
<span class="label label-success visible-md-inline">Medium (≥992px)</span> | |
<span class="label label-info visible-lg-inline">Large (≥1200px)</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Demo: http://jsfiddle.net/5t60bfys/