Remove the bullets/markers from the list items. - HTML CSS CSS

HTML CSS examples for CSS:Quiz

Description

Remove the bullets/markers from the list items.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
ul {<!-- w w  w  . j av  a 2 s  .  c om-->
    list-style-type: none;
}
</style>
</head>
<body>

<ul>
  <li>A</li>
  <li>B</li>
  <li>C</li>
</ul>

</body>
</html>

Related Tutorials