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="wrapper">
    <ul>
      <li>aaaaaaaa</li>
      <li>bbbbbbbbbbbb</li>
      <li>c</li>
      <li><input type="text"></li>
    </ul>
  </div>
</body>
</html>
 
* {
  padding: 0;
  margin: 0;
}
ul,
li {
  list-style: none;
}
%clearfix {
  &:after {
    content: ' ';
    display: table;
    clear: both;
  }
}
ul {
  @extend %clearfix;
}
li {
  float: left;
  margin-right: 10px;
  
  &:last-child {
    width: 200px;
  }
}
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x