Visitor

Reads - CSS Tutorials

What the heck is CSS, anyway? I don't understand a CSS document! How do I apply CSS style sheets? How do I customize lists? How can I customize the scrollbar? How do I insert comments in my CSS document?

How do I customize lists?

With CSS, you can customize bullets in an unordered list with the presets or with your own image. In the CSS, you must specify the 'list-style-type' property to define a bullet: ul { list-style-type: disc; } As a result, the list will be shown with bullets like: You can also create your own bullets. Replace 'http://...' with the URL of your bullet image in this code: li { list-style-image: url(http://...); }