Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta name="description" content="Display: list-item - demo 1 - http://tzi.fr" />
<meta charset=utf-8 />
  <title>Display: list-item - demo 1 - http://tzi.fr</title>
</head>
<body style="padding-top: 3em">
  <ul>
    <li><a href="">Item 1</a></li>
    <li><a href="">Item 2</a></li>
    <li><a href="">Item 3</a></li>
  </ul>
</body>
</html>
 
li {
  display: inline-block;
}
ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: square outside;
}
Output

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

Dismiss x