How to make a 25x25 px image as a bullet in ul list | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make a 25x25 px image as a bullet in ul list

I've been trying to take an image from google and use it as the bullet for my ul list but it comes out to big. To code I am using is ul.custom { list-style: circle inside url ("any google chrome pic "); width:25px; height:25px; font-size:25px; }

21st Jul 2019, 7:07 PM
Hothouseinwar Polik
Hothouseinwar Polik - avatar
1 Answer
0
I think you should use this css for making image bullets. .custom-list { list-style: none; padding-left: 0; } .custom-list li { position: relative; padding-left: 20px; } .custom-list li:before { content: ''; width: 10px; height: 10px; position: absolute; background-image: url('img/bullet.png'); background-size: cover; background-position: center; left: 0; top: 50%; transform: translateY(-50%); } <ul class="custom-list"> <li>Dog</li> <li>Cat</li> <li>Monkey</li> <li>Lion</li> <li>Dragonfly</li> </ul> I hope it'll be helpful to you. Thanks!
8th Jul 2020, 2:46 AM
Shaili Shah
Shaili Shah - avatar