Computer Science, asked by abbi2, 1 year ago

how to insert image to the righ side of bullet

Answers

Answered by siddhartharao77
0
HTML :

.UL
{
list-style-type :none;
}

.UL li
{
background-image : url(abcd.png);
background-repeat : no-repeat;
background-position : right;
}


Hope this helps! 
Similar questions