Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

Back to CSS3
Preview Source Code
Download
HTML
CSS
*{
  box-sizing: border-box;
}

body {
  margin: 0px;
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 600px;
}

.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
}
.item:hover {
  flex: 7;
}

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *