Problem:
Fixed element in iPhone 6 plus (landscape mode) is NOT clicked
Source:
Below is whole source html.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
</head>
<body>
<a id="menu" onclick="alert('clicked')"
style="position: fixed !important; bottom: 30%;
right: 30%; width: 80px; height: 80px;
background-color: #ccc;"></a>
</body>
</html>
The "a#menu" element is not clicked (or touched) in iphone 6 plus(landscape mode).
Problem Pictures
Below is safari developer mode.
I captured physical device screen, iPhone 6 plus.
In screen, grey box is visible area. and blue box is clickable area.
What did i do wrong?
github link: https://github.com/soredive/iphone6plus_landscape_problem