範例:
/* userChrome.css */
/* set default namespace to XUL */
/* Do not remove the @namespace line -- it's required for correct functioning */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* 工具列背景圖 */
menubar, toolbox, toolbar, .tabbrowser-tabs {
background-image: url("background.gif") !important;
background-color: none !important;
}
/* 取消分頁工具列右方關閉鈕 */
/* 用滑鼠中鍵操作(Firefox 內建)或其它套件提供相關功能操作 */
.tabs-closebutton-box { display:none !important; }
/* 書籤 */
.bookmark-item {
min-width:50px !important; /* 最小寬度 */
max-width:150px !important; /* 最大寬度 */
}
/* 蹦現選單背景圖 */
menupopup, popup {
background-image:url(fx_bg_popup.jpg) !important;
background-position:left top !important;
background-repeat:no-repeat !important;
background-attachment:scroll !important;
}
/* 蹦現選單「反白選項」色彩 */
menupopup>menu[_moz-menuactive="true"],
menupopup>menuitem[_moz-menuactive="true"],
popup>menu[_moz-menuactive="true"],
popup>menuitem[_moz-menuactive="true"] {
background-color:#000 !important;
color:#fff !important;
}