Cascading Style Sheets CSS - List properties
|
List Properties |
|||
| Property |
Description |
Values |
Sample Code |
| display |
Sets how or if an element is displayed |
block |
p {display: block} |
| list-style |
Sets all of the list properties |
list-style-type |
ul {list-style: circle inside} |
| list-style-image |
Sets an image as the list item marker |
url |
ul {list-style-image: myimage.gif} |
| list-style-position |
Sets the position of the list marker |
inside |
ul {list-style: outside} |
| list-style-type |
Sets the appearance of the list item marker |
disc |
ol {list-style-type: circle} |