为什么我的 CSS 无法与 XUL 应用程序配合使用?

发布于 2024-09-18 09:52:41 字数 629 浏览 5 评论 0原文

我的xul应用程序:

<?xml version="1.0"?>
<?xml-stylesheet href="main.css" type="text/css"?>

<window id="main" title="MY TEST" width="640" height="480" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <listbox id="mainList">
      <listitem label="Butter Pecan"/>
      <listitem label="Chocolate Chip"/>
      <listitem label="Raspberry Ripple"/>
      <listitem label="Squash Swirl"/>
    </listbox>
</window>

main.css:

body {background-color:#b0c4de;}

结果是一个透明窗口,为什么颜色没有填充?

My xul app:

<?xml version="1.0"?>
<?xml-stylesheet href="main.css" type="text/css"?>

<window id="main" title="MY TEST" width="640" height="480" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <listbox id="mainList">
      <listitem label="Butter Pecan"/>
      <listitem label="Chocolate Chip"/>
      <listitem label="Raspberry Ripple"/>
      <listitem label="Squash Swirl"/>
    </listbox>
</window>

The main.css:

body {background-color:#b0c4de;}

and the result is a transparent window, why the color is not filling?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋风の叶未落 2024-09-25 09:52:41

我对 XUL 一无所知,但我认为该样式不起作用,因为 XUL 代码中没有 body 标记。

试试这个:

#main {background-color:#b0c4de;}

I know nothing about XUL, but I would assume that the style isn't working because there isn't a body tag in your XUL code.

Try this:

#main {background-color:#b0c4de;}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文