Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="row">
    <div class="center-block"></div>
    <div class="right-block"></div>
  </div>
</body>
</html>
 
.row {
  width: 100%;
  height: 100px;
  background-color: lightgray;
  
  display: flex;
  justify-content: flex-end
}
.center-block {
  width: 25%;
  background-color: cyan;
  
  margin: 0 auto;
}
.right-block {  
  width: 25%;
  background-color: yellow;
}
Output

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

Dismiss x
public
Bin info
DarthVictorpro
0viewers