Less than 1 min.
UL - List
Step 1 Add list:
https://university.webflow.com/article/lists
Step 2 - Remove bullets:
list-style-type: none;
Step 3: Remove ul default padding
LI - List item
Step1 - Add left padding (room for the icon)
Step2 - Set background image
Use SVG (Better than png) - without any extra space around.
Left: 0;
top
=> “tricky” you should manually add X
px (Depend on font type, font size and so on).
Done
Related:
Fit artboard to bounds by adobe-illustrator
Another option:
custom code
<style>
ul.class-name {
list-style-image: url('https://my-file.svg');
}
</style>