I wonder if we can use the Plus sign in the list style.
Instead of Disc, Circle... in <li>
List-style, can we have a plus sign?
li {list-style: disc...}
There is no list-style for a plus sign like there is for the disc, circle, etc., but you can achieve similar results using the :before selector together with the content property.
Here is the CSS code to get it to work:
ul {
list-style: none;
}
li:before {
content: "+";
margin-right: 4px;
}
you can use a image instead of it.
li{list-style-image:url('...');}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With