My HTML List needs a different look - I want to change the bullet icon into a double quote icon.
A website that I found interesting is this one.
Here's the CSS code I have:
.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 demonstrates the changes:
https://i.sstatic.net/gObw7.png
I want to replace the bullet icon with the double quote icon, not both icons together.
Any suggestions on how I can achieve this?
I want to make sure that the text doesn't align vertically when there's a line break: https://i.sstatic.net/UpBP3.png