PlayN-canvas对象不在页面顶部

时间:2012-05-05 11:17:15

标签: html playn

我找不到解决此问题的方法: 我想用html-iframe显示我的playN游戏:

<iframe src="../playn-showcase-html/Showcase.html"
    width="640" height="480" name="Showcase" scrolling="no" marginwidth="0px" marginheigth="0px" frameborder="0" align="top">
</iframe>

我想把它嵌入没有边框。但正如你在下面的图片中看到的那样,在我不想拥有的iframe顶部有一个15px的黑色“矩形”。

可以看到的是Showcase.html(黑色)的背景。

正如我在Mozilla Firebug中看到的那样,黑色的“矩形”是身体元素的一部分。 画布对象位于顶部下方15px处。

如何更改代码以使canvas-object从顶部开始?

以下是Showcase.html的代码:

<!DOCTYPE html>
<html>
  <head>
    <title>PlayN Showcase</title>
    <style>
      @font-face {
        font-family: "Museo";
        src: url(showcase/text/Museo.ttf);
      }
    </style>
  </head>
  <body bgcolor="black">
    <script src="showcase/showcase.nocache.js"></script>
  </body>
</html>

enter image description here

1 个答案:

答案 0 :(得分:1)

您是否尝试将style =“margin:0; padding:0”添加到body元素?