Created
February 18, 2019 21:36
-
-
Save nirmalrepo/130e95181f692d23f5d4050a30278d11 to your computer and use it in GitHub Desktop.
Making image div grid to one height
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
<style> | |
@media screen and (min-width: 768px){ | |
.slide-image { | |
overflow: hidden; | |
position: relative; | |
display:block; | |
height:260px; | |
line-height:200px; | |
} | |
.slide-image img { | |
position: relative; | |
margin: -50% auto; | |
width: 100%; | |
height:auto; | |
vertical-align:middle; | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment