开发者

Formatted XUL Tab caption

开发者 https://www.devze.com 2022-12-11 01:30 出处:网络
Is there an easy way to have formatted tab captions in XUL? I wantto have a specific part of the tab caption in bold font.开发者_运维百科No easy way. XUL <tab>\'s text is in a <label>, which doe

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.开发者_运维百科


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号