I am currently creating a list this should instead of the default element ●
would like to have a chevron right
like in the example photo. However, I do not use bootstrap but Bulma. Is there an option to get this somehow without bootstrap. I did it with the character >
. However, this one is not as nice as the chevron right .
So my question how can I replace the character '>
' with such a 'chevron right
' without using bootstrap?
HTML
<ul className="footer-link">
<li>
First 1
</li>
<li>
Second 1
</li>
<li>
Third 1
</li>
</ul>
CSS
.footer-link ul {
list-style: none;
margin-left: 0;
padding-left: 0;
}
.footer-link ul li {
padding-left: 1em;
text-indent: -1em;
}
.footer-link li:before {
content: ">";
padding-right: 5px;
}
What I want
The chevron in this example is isosceles and moreover it is centered from the text height.
<i class="bi bi-chevron-right"></i>