CSS Image Gallery
Below is an example of creating an image gallery using CSS:
Image Gallery
Here is how to create an image gallery using CSS:
Example
<div class="responsive">
<div class="img">
<a target="_blank" href="http://static.tutorialpro.org/images/demo/demo1.jpg">
<img decoding="async" src="http://static.tutorialpro.org/images/demo/demo1.jpg" alt="Image description" width="300" height="200">
</a>
<div class="desc">Add image description here</div>
</div>
</div>
<div class="responsive">
<div class="img">
<a target="_blank" href="http://static.tutorialpro.org/images/demo/demo2.jpg">
<img decoding="async" loading="lazy" src="http://static.tutorialpro.org/images/demo/demo2.jpg" alt="Image description" width="300" height="200">
</a>
<div class="desc">Add image description here</div>
</div>
</div>
<div class="responsive">
<div class="img">
<a target="_blank" href="http://static.tutorialpro.org/images/demo/demo3.jpg">
<img decoding="async" loading="lazy" src="http://static.tutorialpro.org/images/demo/demo3.jpg" alt="Image description" width="300" height="200">
</a>
<div class="desc">Add image description here</div>
</div>
</div>
<div class="responsive">
<div class="img">
<a target="_blank" href="http://static.tutorialpro.org/images/demo/demo4.jpg">
<img decoding="async" loading="lazy" src="http://static.tutorialpro.org/images/demo/demo4.jpg" alt="Image description" width="300" height="200">
</a>
<div class="desc">Add image description here</div>
</div>
</div>
More Examples
Responsive Image Gallery
Create a responsive image gallery using CSS3 media queries:
<div class="responsive">
<div class="img">
<a target="_blank" href="img_fjords.jpg">
<img decoding="async" loading="lazy" src="http://www.tutorialpro.org/wp-content/uploads/2016/04/img_fjords.jpg" alt="Trolltunga Norway" width="300" height="200">
</a>
<div class="desc">Add image description here</div>
</div>
</div>
<div class="responsive">
<div class="img">
<a target="_blank" href="img_forest.jpg">
<img decoding="async" loading="lazy" src="http://www.tutorialpro.org/wp-content/uploads/2016/04/img_forest.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">Add image description here</div>
</div>
<div class="responsive">
<div class="img">
<a target="_blank" href="img_lights.jpg">
<img decoding="async" loading="lazy" src="http://www.tutorialpro.org/wp-content/uploads/2016/04/img_lights.jpg" alt="Northern Lights" width="600" height="400">
</a>
<div class="desc">Add image text description here</div>
</div>
</div>
<div class="responsive">
<div class="img">
<a target="_blank" href="img_mountains.jpg">
<img decoding="async" loading="lazy" src="http://www.tutorialpro.org/wp-content/uploads/2016/04/img_mountains.jpg" alt="Mountains" width="600" height="400">
</a>
<div class="desc">Add image text description here</div>
</div>
</div>
<div class="clearfix"></div>
<div style="padding:6px;">
<h4>Resize the browser to see the effect</h4>
</div>