Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  
  <div class="box">
    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus sed unde voluptate non temporibus quae amet possimus dolorum quisquam atque nemo reprehenderit quasi suscipit vero cum delectus quibusdam optio asperiores.
  </div>
  
</body>
</html>
 
body {
  margin: 20px;
}
.box {
  width: 200px;
  /* height: 150px; */
  position: relative;
  padding: 5px;
  background-color: gold;
}
.box:before {
  content: "";
  position: absolute;
  background-color: lightgray;
  
  top: -3%; bottom: -12%; left: 0; right: 0;
  z-index: -1;
  -webkit-transform: perspective(50em) rotateX(-30deg);
  transform: perspective(50em) rotateX(-30deg);
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
qolamipro
0viewers