Lists
You see list on browsers all the time. Ordered list, unordered list, colored list, and all sorta of attributes of list. "list-style" is the shorthand value for lists and describes list-style-type, list-style-image, and list-style-position. Example:
ol {list-style: url(http://yourdomain.com/image.jpg); inside; disk;}Normally the longhand code would look like this:
ol {list-style-position: inside;
list-style-image: url(http://yourdomain.com/image.jpg);
list-style-type: disk; }














