+ 1
I need help on how to resize images which are used as list items in CSS
4 Answers
+ 3
Great question
You cannot do that
You cannot resize, or set position
BUT!!! You can set "background" instead.
Example:
ul {list-style-type: none;}
li {
background: url("listBG.jpg");
background-size: 20px;
background-repeat: no-repeat;
}
I hope it worked
Good nightđđ
+ 1
Hi bro
- 4
can help with my problem?