ページにテーブルがあります:
<table border="0" width="320px" height="480px" style="background-color: black;">
アップデート:
上の検索バーを削除したいので、モバイル用の適応に使用したのはこれだけです:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title></title>
<style type="text/css">
body{
margin:0px;
padding: 0px;
}
</style>
<script>
window.addEventListener("load",function() {
// Set a timeout...
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});
</script>
</head>
私はまだナビゲーションバーの1インチを見ることができます..しかし、私はその1インチを削除しようとしていますが、できません