CSS3 Transition Example -fade in

by VIvek Vaishnav

HTML

<div class="box1">
Fade In</div>

CSS

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