Is there a way to style a unordered list using the greater than symbol or any symbol I choose?
\> one
\> two
\> three
♦ one
♦ two
♦ three
without the use of url()?
Use li:before
<style>
ul { list-style: none; }
li:before { content: '> '}
</style>
<ul>
<li>xyz</li>
</ul>
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