CSS 3 Transition Example - Shadow

by VIvek Vaishnav

HTML

<div class="box1">Box Shadow</div>

CSS

.box1 {
  padding: 70px;
  margin: 5px;
  background: #c5e1a5;
  width: 100px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 900
}
.box1:hover {
  box-shadow: 0 5px 25px #000;
}
.box1 {
  transition-property: all;
  transition-duration: 2s;
}