This repository was archived by the owner on Oct 8, 2021. It is now read-only.
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
"-webkit-transform:translate3d(0,0,0)" make some android browser link not working #6039
Open
Description
jQM some div wrapper will use this, please remove CSS -webkit-transform:translate3d(0,0,0);, it make link in fixed div can't click on some Android browser (Test on AVD 4.2.2 and some 4.X android device), reproduce:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div style="-webkit-transform:translate3d(0,0,0);">
<div style="position: fixed;">
<a href="http://www.google.com">Google</a>
</div>
</div>
</body>
</html>