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="left_table">
</div>
</body>
</html>
<!-- How can I get the green bar to move to the back? -->
 
.left_table{
  position:absolute;
  background-color: #000;
  top:350px;
  width:250px;
  height:175px;
  -webkit-transform: rotateX(10deg); /* Chrome, Safari, Opera */
    transform: rotateX(50deg);
 }
.left_table:before{
  content:'';
  position:absolute;
  background-color: red;
  bottom:-28px;
  width:250px;
  height:30px;
 }
.left_table:after{
  content:'';
  position:absolute;
  background-color: green;
  right:30px;
  width:15px;
  height:250px;
    -ms-transform: rotate(-2deg); /* IE 9 */
   -webkit-transform: rotate(-2deg); Chrome, Safari, Opera 
  transform: rotate(-2deg);
  z-index:-1;
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers