How To Create A Stacked Gallery Using HTML And CSS Source Code
Make money for being or staying online/internet.

You will get a $50 starting gift when you join using this code: Exode4LKrbujm1z and link:: GET THE OFFER NOW!!

In this post I provide you with the source code for the youtube tutorial I made on how to create a Stacked image gallery Using HTML and CSS.

Tutorial
HTML
copy


<div class="gallery-section">

<img src="lion.jpg" alt="lion" class="img1">
<img src="zebra.jpg" alt="zebra" class="img2">
<img src="owl.jpg" alt="owl" class="img3">

</div>
	

CSS
copy

body{
  max-width: 70%;
  margin:0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50vh;
}

.gallery-section{
  position: relative;
}

.gallery-section img{
  width:40%;
  position: absolute;
  z-index:10;
  transition:all .5s;
  box-shadow: -3px 1px 5px rgba(0,0,0,.5);
}

.img1{
  left:5rem;
}

.img2{
  left:10rem;
  top:1rem;
}

.img3{
  left:15rem;
  top:2rem;
}

.gallery-section img:hover{
  z-index:20;
  transform: scale(1.2) rotate(-10deg);
}

.gallery-section:hover img:not(:hover){
  transform:scale(.9);
  opacity:0;
}

@media screen and (max-width:500px){
  .img1{
    left:5rem;
  }

  .img2{
    left:7rem;
  }

  .img3{
    left:10rem;
  }
}
	

Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW

Related Post(s)

» Overriding The Default Text Selection Color With CSS

» Learn how to create an overlay effect with CSS

» Creating A Pure CSS Preloader - Source Code

» Create A Cool Layout Using CSS

» Learn how to use CSS box shadow property - Source Code

collections_bookmark Category :: Css
date_range Published :: 3 years ago At: 04:54 PM
event_note Detailed Date :: Nov 19th, 2020
person Writer :: Code
  • RECENT POSTS
2 days ago

Mr.

(sel


2 days ago

Mr.

(sel


2 days ago

Mr.

555


2 days ago

Mr.

555


2 days ago

Mr.

5550


2 days ago

Mr.

5550


2 days ago

Mr.

555


2 days ago

Mr.

555


Subscribe
  • ADVERTISEMENT

YOU MAY LIKE THESE POSTS

share