Created
March 1, 2022 14:36
-
-
Save arosenkranz/3359c65fbfda36f17f622ff624b74aea to your computer and use it in GitHub Desktop.
CSS Lightbox
This file contains hidden or 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
<a href="#unique-id-of-image"> | |
<img alt="alt text" src="../assets/filename.png" /> | |
</a> | |
<a href="#" class="lightbox" id="unique-id-value"> | |
<img alt="alt text" src="../assets/filename.png" /> | |
</a> |
This file contains hidden or 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
.lightbox { | |
display: none; | |
position: fixed; | |
justify-content: center; | |
align-items: center; | |
z-index: 999; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
padding: 1rem; | |
background: rgba(0, 0, 0, 0.8); | |
} | |
.lightbox:target { | |
display: flex; | |
} | |
.lightbox img { | |
max-height: 100% | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment