From http://www.w3schools.com (Copyright Refsnes Data)
The list-style property is a shorthand property for setting all the properties for a list in one declaration.
Inherited: Yes
CSS properties can also be dynamically changed with a JavaScript.
Scripting Syntax: object.style.listStyle="decimal inside"
In our HTML DOM tutorial you can find more details about the listStyle property.
In our HTML DOM tutorial you can also find a full Style Object Reference.
ul { list-style: disc outside } ol |
Value | Description |
---|---|
list-style-type list-style-position list-style-image |
Sets the properties for a list. Default value: Not defined |
All list properties in one
declaration
This example demonstrates a shorthand property for setting all of the properties
for a list in one declaration.
From http://www.w3schools.com (Copyright Refsnes Data)