I have a List in HTML. Now I would like to change the bullet icon to a double quote icon.
I have found that interesting website.
So I have the code as below:
.listStyle li:before {
list-style: none;
content: "\00BB";
}
<ul class="listStyle">
<li>SOME TEXT</li>
<li>SOME TEXT</li>
<li>SOME TEXT</li>
<li>SOME TEXT</li>
<li>SOME TEXT</li>
<li>SOME TEXT</li>
<li>SOME TEXT</li>
</ul>
The Screenshot looks like that:
Instead of the bullet icon I need the double quote icon. Not both next to each other.
How can I achieve this?
What I need to avoid is that the line is in the same vertical line when a line break is needed: