1

What I want it to look like:

Expected

What it looks like in Edge:

Actual

The Unicode character is ▶

I am assuming edge is just trying to be clever and displaying their own image for my unicode character. How do I prevnt this nonesense. I have googled with no avail.

TylerH
  • 20,799
  • 66
  • 75
  • 101

1 Answers1

2

You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font-family, at least for your symbol (assuming that you wrap your icon in <span> element with icon class) :

.icon {
  font-family: "Segoe UI Symbol";
}
Piotr Wicijowski
  • 1,975
  • 9
  • 15