The list-style CSS property represents the style for list items. The shorthand property of list-style properties are following.
The unstyle list property is used to remove the style of the list item.
Example of Code
<style type="text/css">
.example-list-style {
font-size: 22px;
margin: 0;
padding-left: 0;
list-style: none;
}
</style>
<body>
<ul class="example-list-style">
<li>Apples</li>
<li>Oranges</li>
<li>Watermelons</li>
</ul>
</body>
Output
- Apples
- Oranges
- Watermelons
