how to insert image to the righ side of bullet
Answers
Answered by
0
HTML :
.UL
{
list-style-type :none;
}
.UL li
{
background-image : url(abcd.png);
background-repeat : no-repeat;
background-position : right;
}
Hope this helps!
.UL
{
list-style-type :none;
}
.UL li
{
background-image : url(abcd.png);
background-repeat : no-repeat;
background-position : right;
}
Hope this helps!
Similar questions