Home › Forums › CSS › List with background image for bullet and dotted border (only below text) › Re: List with background image for bullet and dotted border (only below text)
November 26, 2012 at 8:04 am
#115491
Member
If you want to use a custom image as a bullet point then you’re going about it the wrong way (IMO).
Why not use
ul
{
list-style-image:url(‘image-name.png’);
}
Then you can use the dotted bottom border.
Won’t that work?