我使用Google Apps脚本创建了一个小型UiApp。 它使用三个CaptionPanel来组织呈现给用户的信息。 它们彼此叠加在一起。有没有办法轻松摆放它们?我只想在面板之间增加一些像素空间。
编辑:这有效:
var topPanel = app.createCaptionPanel('My Panel').setStyleAttribute('marginBottom', '5px');
基于Bryan P的回答,但来自Google Developer Website的更正。 CSS属性必须是驼峰式的。
答案 0 :(得分:0)
var panel1 = app.createCaptionPanel().setStyleAttribute('margin-bottom', '5px')