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="buttons-pane">
    
  <button type="button" >
    <span class="title">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet</span>
    <span class="interest">Short</span>
  </button>
    
  <button type="button" >
    <span class="title">Neque porro quisquam</span>
    <span class="interest">LongInterest</span>
  </button>
    
  <button type="button" >
    <span class="title">Vix aeterno vocibus vituperatoribus eu. Nec regione fuis</span>
    <span class="interest">Keyword</span>
  </button>
  
  </div>
  
</body>
</html>
 
.buttons-pane {
    width: 150px;
    height: 400px;
}
button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
button .title {
  background-color: yellow;
}
button .interest {
  /* max-width: 50px; */
  background-color: lightyellow;
}
Output

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

Dismiss x
public
Bin info
nacho4dpro
0viewers