Open In App

HTML DOM Style listStyleType Property

The HTML DOM Style listStyleType property is used to set or return the list-item marker type. It has default values as "disc" for <ul> and "decimal" for <ol> and returns a string that represents the type of the list. 

Syntax

object.style.listStyleType
object.style.listStyleType = value"

Return Values

It returns a string value, that represents the type of a list.

Property Values

Example: In this example, we will change the list-item marker type to "lower-alpha". 

<!DOCTYPE html>
<html>

<head>
    <title>HTML DOM Style listStyleType Property</title>
</head>

<body>
    <h2>HTML DOM Style listStyleType Property</h2>

    <b>Geeksforgeeks Courses:</b>

    <ul id="courses">
        <li>Fork Python</li>
        <li>Fork CPP</li>
        <li>Sudo Placement</li>
        <li>Fork Java</li>
    </ul>

    <button onclick="myFunction()">
        Change list-item marker to lower alphabet
    </button>

    <script>
        function myFunction() {
            document.getElementById("courses").style
                .listStyleType = "lower-alpha";
        }
    </script>
</body>

</html>

Output:

HTML-DOM-Style-listStyleType-Property

Supported Browsers

Article Tags :