Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <div class="gizim">
    <div>1</div>
    <div>2</div>
    <div>3333333333333333</div>
  </div>
  <div class="gidoo">
    <div>1</div>
    <div>2</div>
    <div>3333333333333333</div>    
  </div>
</head>
<body>
</body>
</html>
 
.gizim {
  display: grid;
  grid-template-columns: 0.3fr 0.4fr 0.3fr;
  width: 400px;
}
.gizim div {
    border: 1px solid red;
}
.gizim div:first-child {
    width: 100px;  
}
.gidoo {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr;
  width: 400px;
}
.gidoo div {
    border: 1px solid blue;
}
.gidoo div:first-child {
    width: 100px;  
}
Output

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

Dismiss x
public
Bin info
nirorenpro
0viewers