Skip to content

Instantly share code, notes, and snippets.

@ItsPepperpot
Created March 5, 2020 16:13
Show Gist options
  • Save ItsPepperpot/ea7a3fbe5c82826a483b591091526f24 to your computer and use it in GitHub Desktop.
Save ItsPepperpot/ea7a3fbe5c82826a483b591091526f24 to your computer and use it in GitHub Desktop.
HTML code for flex box
<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