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>
<ul class="box">
   <li class="left">5</li>
   <ul class="right">
      <li>1</li>
     <li>2</li>
     <li>3</li>
     <li>4</li>
   </ul>
</ul>
  
</body>
</html>
 
.box{
  width: 500px;
  height:100%;
  display: flex;
  
}
.left {
  width: 200px;
  height:200px;
  background: #000;
  list-style:none;
}
.right{
  display: flex;
  flex-flow:wrap;
  justify-content: space-around;
  
}
.right li{
  width:95px;
  height:95px;
  background: #000;
  margin: 5px;
  flex:1 1 50;
  list-style:none;
}
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers