list-style
The list-style CSS property is a shorthand property for setting list-style-type, list-style-image and list-style-position.
Values
<‘list-style-type’>
<‘list-style-image’>
<‘list-style-position’>
Example
<!DOCTYPE html> <html> <head> <style> ul { list-style: circle; } </style> </head> <body> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> </body> </html>