我用iOS9手机游戏iPhone6sPlus检查了这个bug .
当横向模式下显示safari的选项卡时,我无法触摸固定元素.当隐藏选项卡时,我可以触摸它.
你知道这个bug吗?
当我的笔上显示标签时,请尝试触摸. http://s.codepen.io/geckotang/debug/yYZmoe
这是我无法触摸元素时的屏幕截图.
我的朋友在youtube上记录了这个bug
另外这是我的代码.
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.fixed {
display: block;
position: fixed;
top: 0px;
right: 0px;
width: 100px;
height: 100px;
display: block;
width: 100px;
height: 100px;
background-color: tomato;
}
</style>
</head>
<body>
<a href="javascript: void(0);" class="fixed">link</a>
The quick brown fox jumps over the lazy dog.<br>
The quick brown fox jumps over …
Run Code Online (Sandbox Code Playgroud)