In Google Chrome on Windows, card suit symbols (spades, hearts, diamonds, clubs) are colored correctly using the "style" attribute. Unfortunately, the same page displayed in Google Chrome on Android does not display the colors I defined but uses the default black and red. (See the attached picture for the effect)
HTML code: (and link to the project https://stackblitz.com/edit/web-platform-z2cs3t?file=index.html)
♠ spades
♥ hearts
♦ diamonds
♣ clubs
Is it possible to somehow force Google Chrome to display a selected color on Android?
I also want to understand why Chrome on Android uses predefined colors and I don't accept user colors.
AStombaughwrote: Answers to similar questions that may be helpful:Change the font color of HTML symbols
Works for me:
span { color: transparent; text-shadow: 0 0 0 rgb(0, 128, 0); } ⚫
Thanks.