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>
<body>
<ul>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
</ul>
</body>
</html>
 
li{
  list-style: none;
  width: 24px;
  height: 24px;
  background-color: #ccc;
  border-radius: 50%;
  float: left; 
  margin-right: 4px;
  transition: all .3s;
}
ul:hover li{
  background-color: #555;
}
li:hover~li{
  background-color: #ccc;
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers