list-style property
Specifies up to three separate listStyle properties for an object.
With this property, you can set the type and position of the markers visible before every list element.
Furthermore, you can set an image to display as a marker for the list.
When the image is available, it will replace the marker set with the 'list-style-type' marker.
JavaScript page for this property: listStyle. You can find other example(s) there. |
Possible values:
One of the following values: | ||||||||||||
|
Description of values:
Takes the value of this property from the computed style of the parent element. | |||||||
Specifies a graphic image for a list label. | |||||||
Specifies whether the list marker for a list item should appear inside or outside the list-item box. | |||||||
Specifies the style of the list marker bullet or numbering system within a list. |
Default: disc outside none.
Example HTML code 1:
This example illustrates the use of the list-style property:
|
||||
<head> <style> .example { list-style: inside square; } </style> </head> <body> <ol class="example"> <li>Apple <li>Pear <li>Peach </ol> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
Related pages:
External links:
list-style (MSDN)
list-style (Mozilla Developer Center)
list-style (Safari Reference Library)
list-style (W3C)
list-style (Mozilla Developer Center)
list-style (Safari Reference Library)
list-style (W3C)
User Contributed Comments