Created
October 17, 2019 06:38
-
-
Save sarvar/c70b26930dd87165e787982a67b01ebd to your computer and use it in GitHub Desktop.
Equal img height
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
| <div class="section-item__photo"> | |
| <img .../ > | |
| </div> |
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
| .section-item__photo { | |
| max-width: 400px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .section-item__photo img { | |
| -o-object-fit: cover; | |
| object-fit: cover; | |
| width: 100%; | |
| height: 325px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment