I have written the following HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div>I have included this arrow symbol here: <span><a href="#">↩</a></span></div>
</body>
</html>
This is the content of my style.css
file:
span > a {
color: #F5413C;
}
When viewed on Firefox 31 (Windows 8), everything looks fine:
However, when I access it on my tablet (Samsung Galaxy Note 10.1 2014) the arrow displays as a thick blue symbol:
How can I resolve this issue? Is there a way to fix this problem? Are there specific ASCII characters that are universally displayed correctly across all platforms?
Unfortunately, I am unable to access developer tools in Chrome on the tablet which makes it challenging to troubleshoot this problem.