我在我的网站上发布了一款游戏,我希望它能够在普通电脑浏览器和移动设备上全屏播放。我发现以下代码适用于常规浏览器,但在移动设备上宽度会被切断(如果我旋转屏幕,一些高度也会被切断)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://torahgames.eu5.org/torahgames/shoreshidentify/shoreshfind/index.html">
<head>
<title>Test Layout</title>
<style type="text/css">
body, html
{
margin: 0; padding: 0; height: 100%; overflow: hidden;
}
#content
{
position:absolute; left: 0; right: 0; bottom: 0; top: 0px;
}
</style>
</head>
<body>
<div id="content">
<iframe width="100%" height="100%" frameborder="0" src="http://torahgames.eu5.org/torahgames/shoreshidentify/shoreshfind/index.html" />
</div>
</body>
</html>
我是HTML和网页设计的新手,所以请解释一下你的答案
非常感谢