Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>多栏布局</title>
  <style media="screen">
.wrap{
  display: flex;
  width:500px;
}
.wrap div{
   width:200px;
    border:1px solid black;
}
.wrap div:nth-of-type(2){
  flex-shrink:3;
  background:red;
}
  </style>
</head>
<body>
  <div class="wrap">
    <div>1</div>
    <div>2</div>
    <div>3</div>
  </div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers