Go here for instructions on setting breakpoints, stepping through code
(both often very useful techniques), looking at variables, editing variables
(a command window), and other features:
http://msdn.microsoft.com/library/default.asp?url=/library/en
-us/sdbug/Html/sdbug_1.asp
Finding a List Apart (Get It?) .....................................................................
One source for excellent ideas, samples, and articles — submitted by some of
the most talented Web designers around — is to be found here:
http://www.alistapart.com/topics/css/
You can find some really cutting-edge CSS tricks and techniques described
here. And who knows? Maybe someday you’ll send in a cool idea or two of
your own.
Using Your Own Bullets in Lists ................................................................
With CSS, designing custom bullets in a graphics program and then assigning
them to list items is easy. The following code produces the result shown in
Figure 18-3:
<HTML>
<HEAD>
<style>
ul { list-style-image: url(“mybullet.jpg”); font: 32px; }
</style>
</HEAD>
<body>
<ul>
<li>first
<li>second
<li>third
</ul>
</body>
</html>
324 Part V: The Part of Tens