这样的代码适用于标签:
function doGet() {
var app = UiApp.createApplication().setStandardsMode(true);
return app.add(app.createLabel('centered').setStyleAttributes(
{marginLeft: 'auto',
marginRight: 'auto',
width: '100px'}));
}
但它对于按钮不起作用。它不会使按钮居中。为什么以及如何使它起作用?