finished up to bootstrap

This commit is contained in:
2026-01-01 23:38:59 +10:00
parent 9faac87716
commit 3f748ba05b
17 changed files with 378 additions and 1 deletions

View File

@@ -0,0 +1,38 @@
<style>
.pict {
display: flex;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
}
.pict a img {
min-width:280px;
min-height:280px;
}
@media (max-width: 1000px) {
.pict {
flex-wrap: wrap;
}
}
@media (max-width: 700px) {
.pict {
flex-direction: column;
align-items: center;
}
}
</style>
<hr>
<div class="pict">
<a href="#"><img src="images/image_1.jpg"></a>
<a href="#"><img src="images/image_2.jpg"></a>
<a href="#"><img src="images/image_3.jpg"></a>
<a href="#"><img src="images/image_4.jpg"></a>
<a href="#"><img src="images/image_5.jpg"></a>
</div>
<hr>