Computer >> Computer tutorials >  >> Programming >> Javascript

Usage of CSS list-style-type property


The list-style-type allows you to control the shape or appearance of the marker. You can try to run the following code to implement list-style-type property

Example

<html>
   <head>
   </head>
   <body>
      <ul style = "list-style-type:circle;">
         <li>India</li>
         <li>Australia</li>
      </ul>
   </body>
</html>