如何在Google Apps脚本用户界面上正确应用Firefox中的边距

时间:2013-02-06 18:47:24

标签: google-apps-script

我使用边距来定位我使用Google Apps脚本UiInstance创建的Web App中的元素(并在元素之间添加空格)。

在Firefox或Opera中未正确应用边距。它们正在Chrome和Internet Explorer中应用,因此我觉得代码是正确的。

这是一个我有published here的例子。

function doGet() {
  var app = UiApp.createApplication();
  app.add(app.createLabel("Some Text").setStyleAttribute("margin-left","500px").setStyleAttribute("margin-top","25px"));
  return app;
}

任何人都可以解释为什么会这样吗?这是一个错误,还是这种不好的做法,我应该做点什么?

注意:使用Firefox检查器,我发现没有任何迹象表明尝试了保证金。

0 个答案:

没有答案