Perspective 1

#red .box {
  background-color: red;
  transform: perspective( 600px ) rotateY( 45deg );
}
#blue {
  perspective: 600px;
}

#blue .box {
  background-color: blue;
  transform: rotateY( 45deg );
}