<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
body {
  text-align: center;
}

.item {
  margin: 5px;
  background-color: orange;
  width: 20vw;
  height: 40vh;
  transition: .3s all;
  display: inline-block;
}

.item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px #000;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.