Lists

ul{
 list-style-image:url(myMarker.gif);
 list-style-type: circle;
}

Of course you can also have a value of "none" but why even bother with the image property for nothing. Again, this property doesn't work with a definition lists.

ol{
 list-style-position:inside;
}
ol{
 list-style-position:outside;
}
ol{
 list-style:url(myMarker.gif) circle inside;
}

As you can see, all of these styles deal with the markers of lists. Since definition lists have no markers none of these apply to them. Don't fret though, you still can add many other style to them and the other lists for that matter. List styles are pretty simple, huh?

Support us by supporting our advertisers!



© 2004 Terry Lamrouex