Tame your lists.
In Issue No. 151 of A List Apart: CSS Design: Taming Lists. This article will show you how to do cool lists like the one below with CSS.
- Item 1
- Item 2
- Item 3
For you impatient readers, here's the code used to render the list above:
ul.glassList { list-style: url(../images/aquadot.jpg) disc outside; line-height: 1.5; vertical-align: top; } ... <ul class="glassList"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>
Have a great Saturday!