You are here : cssCSS 3list-style

list-style - CSS 3

The list-style shorthand property sets all the list properties in one declaration.The properties that can be set, are (in order): list-style-type, 
list-style-position, list-style-image.If one of the values above are missing, e.g. "list-style:circle inside;", the 
default value for the missing property will be inserted, if any.


Syntax

list-style: list-style-type list-style-position list-style-image|initial|inherit;


Example

ul
	{
	   
	list-style: square url("sqpurple.gif");
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference