I know this sounds dumb, but I'm tryin to create a list (w/a custom image (bullet.gif) preceding each <li>, this is what I have so far;
li.list { image-background: ("bullet.gif"); }
Am I on the right track?
Thanks!li.list { background-image: url("bullet.gif"); }
<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/propidx.htmlhttp://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-imageList-style-image">http://www.w3.org/TR/REC-CSS2/propidx.h ... tyle-image</a><!-- m --> is difficult to position, so I recommend putting background-image's on the <li>s instead, hence why I didn't mention list-style-image.
li.list { image-background: ("bullet.gif"); }
Am I on the right track?
Thanks!li.list { background-image: url("bullet.gif"); }
<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/propidx.htmlhttp://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-imageList-style-image">http://www.w3.org/TR/REC-CSS2/propidx.h ... tyle-image</a><!-- m --> is difficult to position, so I recommend putting background-image's on the <li>s instead, hence why I didn't mention list-style-image.