I made a site that has an ordered list, for which some items on the list are links, and others are not. Everything renders fine on a PC. On my iPhone, however, the numbers in the ordered list show up smaller than they are supposed to if the list item is a link.
To make sure that it wasn't just some obscure issue with my particular html, css, etc., I made the following html document, called test_1.html
:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<ol>
<li>here.</li>
<li><a href="test_1.html">here.</a></li>
</ol>
</body>
</html>
The issue persists even with this extremely minimal example.
Does anyone know how to fix this?
Thanks!