Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Flexbox - Ordering</title>
<style>
  ul {
    display: -webkit-flexbox;
    
    width: 50%;
    height: 100px;
    background: #eee;
    list-style-type: none;
    padding: 0;
    margin: 0;
    -webkit-flex-pack: center;
  }
  
  ul li {
    -webkit-border-radius: 5px;
    background: #ccc;
    margin: 10px;
    padding: 10px;
    height: 20px;
  }
  
</style>
</head>
<body>
    <ul>
      <li>Item 1</li>
      <li>Item 2</li>
      <li>Item 3</li>
    </ul>
  
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers