格式化的 XUL 选项卡标题

发布于 2024-08-10 06:02:29 字数 54 浏览 7 评论 0原文

有没有一种简单的方法可以在 XUL 中格式化选项卡标题?我希望选项卡标题的特定部分以粗体显示。

Is there an easy way to have formatted tab captions in XUL? I want to have a specific part of the tab caption in bold font.

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

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

发布评论

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

评论(2

夜光 2024-08-17 06:02:29

没有简单的方法。 XUL的文本位于

No easy way. XUL <tab>'s text is in a <label>, which doesn't give you fine-grained control over parts of the text. You'd have to replace it with a <description> which can contain HTML markup, but this is not a standard thing to do.

脱离于你 2024-08-17 06:02:29

也许更简单的方法是将多个 放入
例如:

<tabbox>
    <tabs>
        <tab>
            <label style="margin-right: 0px;" value="normal"/>
            <label style="margin-left: 0px; font-weight: bold;" value="bold"/>
        </tab>
    </tabs>
</tabbox>

当然这取决于它的具体用途。

An easier way perhaps is to put multiple <label>'s inside the <tab>
Eg :

<tabbox>
    <tabs>
        <tab>
            <label style="margin-right: 0px;" value="normal"/>
            <label style="margin-left: 0px; font-weight: bold;" value="bold"/>
        </tab>
    </tabs>
</tabbox>

Of course it depends on what it's used for exactly.

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