Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 100px);
    width: 400px;
    gap: 10px;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
</style>
<div class="grid">
  <img src="resources/pink-image.png" width="113" height="120"></img>
  <img src="resources/pink-image.png" width="113" height="120"></img>
  <img src="resources/pink-image.png" width="113" height="120"></img>
  <img src="resources/pink-image.png" width="113" height="120"></img>
  <img src="resources/pink-image.png" width="113" height="120"></img>
  <img src="resources/pink-image.png" width="113" height="120"></img>
</div>
</html>