Home » CSS Tutorial » CSS Properties » list-style-type
list-style-type
CSS Property Info :
| Syntax: |
list-style-type: <value> |
| Possible Values: |
disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none
|
| Initial Value: |
disc |
| Applies to: |
Elements with display value list-item
|
| Inherited: |
Yes |
CSS Browser Support :
Internet Explorer 4+
Netscape 4+
Opera 3.6+
W3C's CSS Level 1+
CSS Profile 1.0
CSS Property Description :
The list-style-type property specifies the type of list-item marker, and is used if list-style-image is none or if image loading is turned off.
Examples:
LI.square { list-style-type: square }
UL.plain { list-style-type: none }
OL { list-style-type: upper-alpha } /* A B C D E etc. */
OL OL { list-style-type: decimal } /* 1 2 3 4 5 etc. */
OL OL OL { list-style-type: lower-roman } /* i ii iii iv v etc. */
CSS Bugs / Problems :
none
Adapted by style-sheets.com, maker of Style Studio, powerful CSS Editor for Windows.
Copyright © John Pozadzides and Liam Quinn. All rights reserved.
Home » CSS Tutorial » CSS Properties » list-style-type
|