Forked from manfromanotherland/bootstrap-4-grid-overlay.html
Last active
June 3, 2020 14:44
-
-
Save grischka/7ec76b5ec6a5543995f4351107db9695 to your computer and use it in GitHub Desktop.
Bootstrap 4 Grid Overlay
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="grid-overlay"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
<div class="col-1"><span></span></div> | |
</div> | |
</div> | |
</div> |
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
.grid-overlay { | |
position: fixed; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
z-index: 10000; | |
pointer-events: none; | |
opacity: .1; | |
span { | |
display: block; | |
height: 100vh; | |
background: red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment