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="f">
  <div class="y" style="flex:1;">1</div>
  <div class="r" style="flex:2;">2</div>
</div>
<div class="f">
  <div class="y" style="flex:0.1;">0.1</div>
  <div class="r" style="flex:0.2;">0.2</div>
  </div> 
</body>
</html>
 
.f {
  display:flex;
  float:left;
  clear: left;
  height:50px;
  border:1px solid black;
}
.f div {
  width:100px;
}
.y {
   background: yellow;
}
.r {
   background: red;
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers