Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
.grid {
display: grid;
grid-auto-flow: column;
grid-template-rows: auto auto auto;
grid-template-columns: auto auto;
height: 400px;
width: 150px;
gap: 10px;
}
img {
height: 100%;
width: auto;
aspect-ratio: 1;
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>