Firefox mobile: Links getting activated by touching elsewhere -
i've got strange probleme here.
if have line in head part
<meta name="viewport" content="width=1200,initial-scale=2,minimum-scale=2">
touching lines not links in following example causes 1 of links activated:
<ul> <li><a href="http://www.example.com">example</a></li> <li><a href="http://www.test.com">test</a></li> <li>text in between</li> <li>even more text in between</li> <li><a href="http://www.something.com">something</a></li> <li><a href="http://www.other.com">other</a></li> </ul>
this seems happen line in head part. okay chrome , android browser.
is there way solve this?
edit:
it gets worse if make line-height small, example way:
li { font-family:arial; font-weight:bold; font-size:12px; line-height:12px;}
now whether use meta element or not, impossible tap texts in between without activating 1 of links. again in firefox mobile browser.
i think i've found solution, however, don't much.
adding "onclick" attribute (whether empty or not) each unlinked element makes touchable in firefox browser.
this can achieved through small javascript loop.
better solutions appreciated!
Comments
Post a Comment