0

如何设置工具栏按钮的宽度?我已经在 XUL 中设置它并尝试使用 js,但是这些方法都不能使用

document.....setAttribute("style","width:50px")

我怎样才能做到这一点?

谢谢。

4

1 回答 1

1

有这样的东西:

<toolbarpalette id="BrowserToolbarPalette">
   <toolbarbutton id="toolbarbuttonID"
      image='chrome://yourExt/content/images/logo.png'
      class="toolbarbutton-1 chromeclass-toolbar-additional"
   </toolbarbutton>
</toolbarpalette>

您可以在 css 文件中设置图像大小:

#toolbarbuttonID .toolbarbutton-icon {
   width: 50px
   height:16px
}

如果需要,您还可以添加所需高度和宽度的图像并将其添加为按钮的图像。它将拉伸按钮的大小:

于 2013-10-13T15:12:45.093 回答