Answers for "In CSS, Select the property to set an image in a list instead of a standard bullet"

CSS
1

css list style url siz

li{
   list-style: none;
}
li:before{
   content: '';
   display: inline-block;
   height: y;
   width: x;
   background-image: url();
}
Posted by: Guest on May-06-2020

Code answers related to "In CSS, Select the property to set an image in a list instead of a standard bullet"

Browse Popular Code Answers by Language