Tailwind CSS List Style Type
Last Updated :
17 Jul, 2024
Improve
This class accepts lots of value in tailwind CSS in which all the properties are covered as in class form. It is the alternative to the CSS List Style Type property. This class specifies the appearance of the list item marker (such as a disc, character, or custom counter style) if the ‘list-style-image’ has the value ‘none’.
List Style Type classes:
- list-none: No marker is shown in this mode.
- list-disc: This is the default value. The marker is a filled circle.
- list-decimal: A marker is a decimal number, beginning with 1.
Syntax:
<element class="List Style Type">...</element>
Example:
<!DOCTYPE html>
<html>
<head>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="text-center mx-4 space-y-2">
<h1 class="text-green-600 text-5xl font-bold">
GeeksforGeeks
</h1>
<b>Tailwind CSS List Style Type Class</b>
<div class="mx-24 bg-green-200 text-justify px-6">
<ul class="list-disc">
<li>Self learning</li>
<li>Contribute at Open Source</li>
<li>Gain Stack overflow respect</li>
</ul>
<br>
<ol class="list-decimal">
<li>Self learning</li>
<li>Contribute at Open Source</li>
<li>Gain Stack overflow respect</li>
</ol>
<br>
<ul class="list-none">
<li>Self learning</li>
<li>Contribute at Open Source</li>
<li>Gain Stack overflow respect</li>
</ul>
</div>
</body>
</html>
Output:

List style type