Created
March 1, 2022 17:47
-
-
Save uddhabh/0bd37af4f0f9e901aabb3bc202ea74a7 to your computer and use it in GitHub Desktop.
image gallery item aspect ratio square 1:1
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
/*image gallery item aspect ratio square 1:1*/ | |
.pa-image-gallery-1-1 .et_pb_gallery_image { | |
padding-top: 100%; | |
display: block; | |
} | |
.pa-image-gallery-1-1 .et_pb_gallery_item img { | |
position: absolute; | |
height: 100%; | |
width: 100%; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
object-fit: cover; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment