Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

UserChrome question

  • 2 回覆
  • 1 有這個問題
  • 6 次檢視
  • 最近回覆由 cor-el

more options

in userchrome I have given #browser a border-radius value of 30px. This reveals another color underneath the browser.

I want to give this newly revealed part of fire-fox another color but I don't know the name ..... Can you help, please ??

#browser {
  /*background-color: $(color $(( RANDOM %  254 + 1 ))) !important;*/
    background-image: url(clouds.jpg) !important;
    box-shadow: 0 0 20px 20px #0000ff !important;
}
in userchrome I have given #browser a border-radius value of 30px. This reveals another color underneath the browser. I want to give this newly revealed part of fire-fox another color but I don't know the name ..... Can you help, please ?? <pre><nowiki> #browser { /*background-color: $(color $(( RANDOM % 254 + 1 ))) !important;*/ background-image: url(clouds.jpg) !important; box-shadow: 0 0 20px 20px #0000ff !important; }</nowiki></pre>

由 cor-el 於 修改

所有回覆 (2)

more options

If #browser isn't covering everything horizontally or vertically you see the root html element which has a selector of #main-window:

<html id="main-window">
    <html:body>
        <box>
            <toolbox id="navigator-toolbox"> <= This is the toolbar area
        <hbox id="browser"> <= This is the tab content area
more options