Created
March 5, 2020 16:13
-
-
Save ItsPepperpot/ea7a3fbe5c82826a483b591091526f24 to your computer and use it in GitHub Desktop.
HTML code for flex box
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> | |
.container { | |
/* This line is required */ | |
display: flex; | |
/* Images will wrap onto a new line if there is not enough space */ | |
flex-wrap: wrap; | |
/* Will space the images evenly */ | |
justify-content: space-evenly; | |
/* Will align the images to a centre line */ | |
align-items: center; | |
} | |
.container img { | |
/* Change this to make the images larger or smaller */ | |
max-height: 10rem; | |
} | |
</style> | |
<div class="container"> | |
<img src="hello.jpg" alt="hello"> | |
<img src="world.jpg" alt="world"> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment